/** Auth pages — shell centré (forgot / reset / 2FA) */
.auth-shell,
body.auth-page {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 110, 185, 0.05) 0%, rgba(255, 188, 0, 0.08) 100%);
    color: var(--gray-900);
}

.auth-shell--plain {
    background: var(--gray-50);
}

.auth-card,
.card {
    max-width: 460px;
    width: 100%;
    background: var(--color-bg-surface);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 32px;
    border: var(--border-card);
}

.auth-card h1,
.card h1 {
    text-align: center;
    color: var(--brand-blue);
    font-size: 1.25rem;
    margin: 0 0 24px;
    font-weight: 600;
}

.auth-logos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 16px;
}

.auth-logos img {
    height: 56px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    flex-shrink: 0;
}

.auth-hint {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.auth-field-hint {
    color: var(--gray-500);
    font-size: 0.8rem;
    margin: -8px 0 12px;
}

.auth-links,
.auth-card .links,
.card .links {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
}

.auth-links a,
.auth-card .links a,
.card .links a {
    color: var(--brand-blue);
    text-decoration: none;
}

.auth-links a:hover,
.auth-card .links a:hover,
.card .links a:hover {
    text-decoration: underline;
}
