/* auth-style.css (v2.0 - Diseño Profesional) */

.auth-wrapper {
    display: flex;
    min-height: calc(100vh - 135px); /* Ajusta para header y footer */
    width: 100%;
}

.auth-form-side {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.auth-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-card .subtitle {
    margin-bottom: 30px;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}
.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #f8f9fa;
}

.btn-auth {
    width: 100%;
    padding: 14px;
    border: none;
    background-color: var(--success-color);
    color: #304ffe;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.auth-link {
    margin-top: 25px;
    font-size: 0.9rem;
    text-align: center;
}

.auth-promo-side {
    width: 50%;
    background-color: #1a253c;
    background-image: url('URL_DE_TU_IMAGEN_AQUI.jpg'); /* <-- AQUÍ PONDRÁS TU IMAGEN */
    background-size: cover;
    background-position: center;
    display: none; /* Oculto en móviles */
}

@media (min-width: 992px) {
    .auth-form-side {
        width: 50%;
    }
    .auth-promo-side {
        display: block; /* Visible en escritorio */
    }
}

.error-message, .success-message {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}
.error-message {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}
.success-message {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}
/* --- ESTILOS PARA VER/OCULTAR CONTRASEÑA --- */

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-light);
}

.toggle-password svg {
    width: 20px;
    height: 20px;
}