/* ============================================
   CSS LOGIN - HOTEL REYNA
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #FFD700;
    --accent-color: #FFA500;
    --dark-color: #000000;
    --light-color: #f8f9fa;
    --success-color: #4CAF50;
    --error-color: #f44336;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============================================
   CONTENEDOR PRINCIPAL
   ============================================ */

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* ============================================
   COLUMNA IZQUIERDA - IMAGEN
   ============================================ */

.login-left {
    position: relative;
    background: url('../img/cuarto1.jpeg') center/cover no-repeat;
    overflow: hidden;
}

.login-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.login-branding {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 3rem;
    color: white;
    text-align: center;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 5px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.logo-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.brand-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.brand-tagline {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.brand-location {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.brand-location i {
    color: #FFD700;
    font-size: 1.2rem;
}

/* Formas flotantes decorativas */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* ============================================
   COLUMNA DERECHA - FORMULARIO
   ============================================ */

.login-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: white;
}

.login-form-wrapper {
    width: 100%;
    max-width: 450px;
}

/* Header del formulario */
.login-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.login-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.login-header p {
    color: #666;
    font-size: 1rem;
}

/* ============================================
   FORMULARIO
   ============================================ */

.login-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: #FFD700;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #FFD700;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

/* Password Input con toggle */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.toggle-password:hover {
    color: #FFD700;
}

/* Opciones del formulario */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* Checkbox personalizado */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #000;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkbox-container input:checked + .checkmark {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-color: #FFD700;
}

.checkbox-container input:checked + .checkmark::after {
    opacity: 1;
}

.checkbox-label {
    color: #666;
    font-size: 0.9rem;
}

.forgot-password {
    color: #FFD700;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #FFA500;
    text-decoration: underline;
}

/* Botón de Login */
.btn-login {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.btn-login:active {
    transform: translateY(-1px);
}

.btn-login i {
    transition: transform 0.3s ease;
}

.btn-login:hover i {
    transform: translateX(5px);
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: #999;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    padding: 0 1rem;
    font-size: 0.9rem;
}

/* ============================================
   LOGIN SOCIAL
   ============================================ */

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-btn.google {
    color: #DB4437;
}

.social-btn.google:hover {
    border-color: #DB4437;
    background: rgba(219, 68, 55, 0.05);
}

.social-btn.facebook {
    color: #1877F2;
}

.social-btn.facebook:hover {
    border-color: #1877F2;
    background: rgba(24, 119, 242, 0.05);
}

.social-btn i {
    font-size: 1.2rem;
}

/* ============================================
   LINKS ADICIONALES
   ============================================ */

.register-link {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
}

.register-link p {
    color: #666;
    font-size: 0.95rem;
}

.register-link a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-link a:hover {
    color: #FFA500;
    text-decoration: underline;
}

.back-home {
    text-align: center;
    margin-top: 1.5rem;
}

.back-home a {
    color: #fff;
    background: #000;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: 2px solid #000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-home a:hover {
    background: #1a1a1a;
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.back-home i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.back-home a:hover i {
    transform: translateX(-5px);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(400px);
    transition: transform 0.4s ease;
    z-index: 9999;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid #4CAF50;
}

.toast.error {
    border-left: 4px solid #f44336;
}

.toast i {
    font-size: 1.5rem;
}

.toast.success i {
    color: #4CAF50;
}

.toast.error i {
    color: #f44336;
}

.toast-message {
    font-weight: 500;
    color: #333;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr;
    }
    
    .login-left {
        display: none;
    }
    
    .login-right {
        min-height: 100vh;
    }
}

@media (max-width: 768px) {
    .login-right {
        padding: 2rem 1.5rem;
    }
    
    .login-header h2 {
        font-size: 2rem;
    }
    
    .social-login {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .login-right {
        padding: 1.5rem 1rem;
    }
    
    .login-header h2 {
        font-size: 1.8rem;
    }
    
    .login-header p {
        font-size: 0.9rem;
    }
    
    .form-group input {
        padding: 0.9rem;
    }
    
    .btn-login {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .toast {
        right: 1rem;
        left: 1rem;
        top: 1rem;
    }
}

/* ============================================
   LOADING STATE
   ============================================ */

.btn-login.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-login.loading span {
    opacity: 0;
}

.btn-login.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   ESTILOS ADICIONALES PARA REGISTRO
   ============================================ */

/* Form Row - Campos en fila */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Beneficios de Registro */
.register-benefits {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.register-benefits h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.register-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.register-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #ffffff;
    font-size: 0.95rem;
}

.register-benefits li i {
    color: #FFD700;
    font-size: 1.2rem;
    min-width: 24px;
}

/* Password Strength Indicator */
.password-strength {
    margin-bottom: 1.5rem;
    margin-top: -0.5rem;
}

.strength-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Link Inline */
.link-inline {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.link-inline:hover {
    color: #FFA500;
    text-decoration: underline;
}

/* Ajustes para el checkbox de términos */
.checkbox-label a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    color: #FFA500;
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE ADICIONAL PARA REGISTRO
   ============================================ */

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .register-benefits {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .register-benefits h3 {
        font-size: 1.2rem;
    }
    
    .register-benefits li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .register-benefits {
        padding: 1rem;
    }
    
    .register-benefits li {
        padding: 0.6rem 0;
        font-size: 0.85rem;
    }
    
    .register-benefits li i {
        font-size: 1rem;
    }
}

/* ============================================
   MODALES (TÉRMINOS Y PRIVACIDAD)
   ============================================ */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 2rem 2.5rem;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #000;
    margin: 0;
}

.modal-close {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000;
    font-size: 1.2rem;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FFD700;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-body ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.modal-body ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.modal-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.5rem;
    line-height: 1;
}

.modal-body strong {
    color: #1a1a1a;
    font-weight: 600;
}

.modal-date {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
    font-style: italic;
    color: #999;
}

.modal-footer {
    padding: 1.5rem 2.5rem;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: flex-end;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.btn-modal-close {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-modal-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

/* Scrollbar personalizada para modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

/* ============================================
   RESPONSIVE PARA MODALES
   ============================================ */

@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
    }
    
    .modal-content {
        max-height: 90vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1.5rem;
        border-radius: 15px 15px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-body h3 {
        font-size: 1.1rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem;
        border-radius: 0 0 15px 15px;
    }
    
    .btn-modal-close {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-body h3 {
        font-size: 1rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .modal-body p,
    .modal-body ul li {
        font-size: 0.9rem;
    }
}

/* ============================================
   ESTILOS PARA RECUPERACIÓN DE CONTRASEÑA
   ============================================ */

/* Pasos de recuperación */
.recovery-step {
    display: none;
}

.recovery-step.active {
    display: block;
}

/* Icono de recuperación */
.recovery-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.recovery-icon.success {
    background: linear-gradient(135deg, #00C851, #00D859);
    box-shadow: 0 10px 30px rgba(0, 200, 81, 0.4);
}

.recovery-icon i {
    font-size: 2.5rem;
    color: #000;
}

/* Ayuda en el input */
.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
}

/* Volver al login */
.back-to-login {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-login:hover {
    color: #FFA500;
    transform: translateX(-5px);
}

.back-to-login i {
    font-size: 0.9rem;
}

/* Mensaje de confirmación */
.recovery-message {
    margin-top: 2rem;
}

.message-box {
    background: linear-gradient(135deg, rgba(0, 200, 81, 0.1), rgba(0, 216, 89, 0.05));
    border: 2px solid rgba(0, 200, 81, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.message-box i {
    font-size: 2rem;
    color: #00C851;
    flex-shrink: 0;
}

.message-box p {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.message-box strong {
    color: #FFD700;
    font-weight: 600;
}

/* Instrucciones */
.recovery-instructions {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.recovery-instructions h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.recovery-instructions ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.recovery-instructions ol li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    counter-increment: step-counter;
    position: relative;
}

.recovery-instructions ol li::before {
    content: counter(step-counter);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.recovery-instructions ol li i {
    color: #FFD700;
    font-size: 1.1rem;
    min-width: 20px;
}

.recovery-instructions ol li span {
    color: #555;
    font-size: 0.95rem;
}

/* Sección de reenvío */
.resend-section {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #e0e0e0;
}

.resend-section p {
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.btn-resend {
    background: white;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
}

.btn-resend:hover:not(:disabled) {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-resend:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.resend-timer {
    display: block;
    margin-top: 1rem;
    color: #999;
    font-size: 0.85rem;
}

.resend-timer span {
    color: #FFD700;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE PARA RECUPERACIÓN
   ============================================ */

@media (max-width: 768px) {
    .recovery-icon {
        width: 70px;
        height: 70px;
    }
    
    .recovery-icon i {
        font-size: 2rem;
    }
    
    .message-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.2rem;
    }
    
    .recovery-instructions {
        padding: 1.2rem;
    }
    
    .recovery-instructions ol li {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .recovery-instructions ol li::before {
        position: relative;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .recovery-icon {
        width: 60px;
        height: 60px;
    }
    
    .recovery-icon i {
        font-size: 1.8rem;
    }
    
    .message-box {
        padding: 1rem;
    }
    
    .recovery-instructions h4 {
        font-size: 1.1rem;
    }
    
    .recovery-instructions ol li span {
        font-size: 0.9rem;
    }
    
    .btn-resend {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ESTILOS PARA RECUPERACIÓN DE CONTRASEÑA
   ============================================ */

/* Recovery Steps */
.recovery-step {
    display: none;
}

.recovery-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Header */
.icon-header {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.icon-header i {
    font-size: 2rem;
    color: #000;
}

/* Form Hint */
.form-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

.form-hint i {
    color: #FFD700;
}

/* Success Message */
.success-message {
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00C851, #00A84F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

.success-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.success-text strong {
    color: #FFD700;
    font-weight: 600;
}

/* Info Box */
.info-box {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    text-align: left;
}

.info-box i {
    color: #FFD700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-box strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.info-box.warning {
    background: rgba(255, 152, 0, 0.1);
    border-left-color: #FF9800;
}

.info-box.warning i {
    color: #FF9800;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.info-box ul li {
    padding: 0.3rem 0;
    color: #666;
    font-size: 0.9rem;
}

.info-box ul li::before {
    content: '• ';
    color: #FF9800;
    font-weight: bold;
}

/* Timer Box */
.timer-box {
    background: rgba(33, 150, 243, 0.1);
    border-left: 4px solid #2196F3;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.timer-box i {
    color: #2196F3;
    font-size: 1.3rem;
}

.timer-box span {
    color: #555;
    font-size: 0.95rem;
}

.timer-box strong {
    color: #2196F3;
    font-weight: 600;
}

/* Resend Section */
.resend-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.resend-section p {
    color: #666;
    margin-bottom: 1rem;
}

.btn-resend {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
}

.btn-resend:hover:not(:disabled) {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-resend:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.resend-timer {
    display: none;
    color: #999;
    font-size: 0.85rem;
    margin-left: 1rem;
}

/* Error Message */
.error-message {
    text-align: center;
}

.error-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: shakeError 0.6s ease;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.error-icon i {
    font-size: 3rem;
    color: white;
}

.error-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.error-text strong {
    color: #ff4444;
    font-weight: 600;
}

/* Help Box */
.help-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.help-box i {
    color: #FFD700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.help-box strong {
    display: block;
    color: #FFD700;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.help-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* Forgot Instructions */
.forgot-instructions h3 {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
}

.forgot-instructions h3 i {
    font-size: 1.3rem;
}

/* ============================================
   RESPONSIVE PARA FORGOT PASSWORD
   ============================================ */

@media (max-width: 768px) {
    .icon-header {
        width: 70px;
        height: 70px;
    }
    
    .icon-header i {
        font-size: 1.7rem;
    }
    
    .success-icon,
    .error-icon {
        width: 80px;
        height: 80px;
    }
    
    .success-icon i,
    .error-icon i {
        font-size: 2.5rem;
    }
    
    .info-box,
    .timer-box,
    .help-box {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .btn-resend {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .icon-header {
        width: 60px;
        height: 60px;
    }
    
    .icon-header i {
        font-size: 1.5rem;
    }
    
    .success-icon,
    .error-icon {
        width: 70px;
        height: 70px;
    }
    
    .success-icon i,
    .error-icon i {
        font-size: 2rem;
    }
    
    .success-text,
    .error-text {
        font-size: 1rem;
    }
    
    .resend-timer {
        display: block;
        margin: 0.5rem 0 0 0;
    }
}