/* ============================================================
   ARTEMISA - Estilos para páginas de autenticación
   ============================================================ */

.auth-body {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    padding: 40px;
    margin-bottom: 20px;
}

.auth-header {
    text-align: center;
    margin-bottom: 25px;
}

.auth-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.auth-header h1 {
    text-align: center;
    color: var(--color-text);
    margin-bottom: 8px;
    font-size: 1.8em;
    font-weight: 700;
}

.auth-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 25px;
    font-size: 1.05em;
}

.auth-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 2px;
    margin-bottom: 25px;
}

.auth-content {
    /* Espacio para el contenido específico */
}

.auth-footer {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.85em;
}

.auth-footer a {
    color: var(--color-white);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Badge de rescate */
.rescue-badge {
    background: #FEF3C7;
    color: #92400E;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85em;
    margin-bottom: 20px;
    text-align: center;
}

/* Aviso de cambio de contraseña */
.password-notice {
    background: #EFF6FF;
    color: #1E40AF;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.password-notice.rescue {
    background: #FEF3C7;
    color: #92400E;
}

/* Input de contraseña con indicador de fortaleza */
.strength {
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.3s;
}

/* Botón de submit en auth */
.auth-card .btn-primary {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 500px) {
    .auth-card {
        padding: 30px 20px;
    }
    .auth-header h1 {
        font-size: 1.5em;
    }
}
