/**
 * auth.css — Estilos específicos del módulo de Autenticación
 * Portal Ciudadano Sisvantec V8.3
 *
 * Clases globales removidas (viven en global.css):
 *   .bg-success-soft, .bg-danger-soft
 */

/* ──────────────────────────────────────────
   Auth Card Container
   ────────────────────────────────────────── */
.auth-card {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

/* ──────────────────────────────────────────
   Verificación de email
   ────────────────────────────────────────── */
.verify-spinner {
    width: 3rem;
    height: 3rem;
}

.verify-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-icon-lg {
    font-size: 3.5rem;
}

/* ──────────────────────────────────────────
   Auth forms (login, registro)
   ────────────────────────────────────────── */
.auth-logo {
    height: 90px;
    width: auto;
}

.auth-hint-text {
    font-size: 0.7rem;
    color: var(--color-text-tertiary);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-400);
    font-size: var(--font-size-xs);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}
