/* ============================================================
   AUTH.CSS — Styles spécifiques pages login / index
   Complète theme.css — ne pas modifier les variables ici
   ============================================================ */

/* ── LAYOUT ──────────────────────────────────────────────── */
.auth-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--color-bg);
}

.auth-center {
    width: 100%;
    max-width: 420px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* ── LOGO ────────────────────────────────────────────────── */
.auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    user-select: none;
}

.auth-logo-img {
    height: 48px;
    width: auto;
    /* Le PNG est transparent — fonctionne sur light et dark */
    /* Sur thème dark, le bleu reste visible, le fond reste transparent */
}

.auth-logo-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

/* ── CARTE LOGIN ─────────────────────────────────────────── */
.auth-card {
    width: 100%;
    padding: 2rem 2rem 1.75rem;
}

/* ── PIED DE PAGE ────────────────────────────────────────── */
.auth-footer {
    margin-top: 0.25rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 480px) {
    .auth-card {
        padding: 1.5rem 1.25rem;
        border-radius: 8px;
    }
    .auth-logo-img {
        height: 40px;
    }
}
