@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at center, #1e2e4a 0%, #0d1117 100%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-wrapper {
    width: 100%;
    max-width: 340px; /* Largeur du popup */
    text-align: center; /* Centre le logo et le titre extérieur */
}

.custom-logo {
    display: block;
    margin: 0 auto 10px;
    height: 50px;
    width: auto;
}

.header-outside { margin-bottom: 15px; }
.header-outside h1 { font-size: 1.5rem; margin: 0; }
.tagline { color: #8b949e; font-size: 0.75rem; }

/* --- LE POPUP --- */
.login-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: left; /* ALIGNÉ À GAUCHE PAR DÉFAUT */
}

.login-card h2 { font-size: 1.2rem; margin: 0 0 5px 0; }
.instruction { font-size: 0.75rem; color: #8b949e; margin-bottom: 20px; }

/* --- FORMULAIRE --- */
.field { margin-bottom: 15px; }
.field label {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 6px;
    color: #c9d1d9;
}

input {
    width: 100%;
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid #30363d;
    border-radius: 6px;
    padding: 10px;
    color: white;
    font-size: 0.85rem;
    outline: none;
    text-align: left; /* TEXTE TAPÉ À GAUCHE */
}

.password-input { position: relative; }
.eye-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.4;
}

.login-button {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(90deg, #3182ce 0%, #00b4d8 100%);
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-align: center; /* TEXTE DU BOUTON CENTRÉ */
}

/* --- SECTION DÉMO (RECENTRÉE) --- */
.demo-section {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center; /* FORCE LE CENTRAGE ICI */
}

.demo-section p {
    color: #8b949e;
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 12px;
}

.badge {
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.6rem;
    border: 1px solid;
}

.badge.blue { border-color: #3182ce; color: #3182ce; }
.badge.cyan { border-color: #00b4d8; color: #00b4d8; }
.badge.orange { border-color: #d69e2e; color: #d69e2e; }

.credentials {
    font-size: 0.7rem;
    color: #8b949e;
    line-height: 1.5;
}

.footer-text {
    margin-top: 20px;
    font-size: 0.65rem;
    color: #8b949e;
}