     body {
            font-family: 'Manrope', sans-serif;
            
        }


        /* Sticky Header Styles */
        .sticky-header {
            transition: all 0.3s ease;
        }

        .sticky-header.scrolled {
            background-color: rgba(11, 17, 32, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        /* Menu Animation */
        #mobile-menu.menu-open {
            transform: translateX(0);
        }

        #mobile-menu-overlay.menu-open {
            opacity: 1;
            visibility: visible;
        }

        /* Prevent body scroll when menu is open */
        body.menu-open {
            overflow: hidden;
        }

        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .input-focus:focus {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(86, 71, 229, 0.2);
        }

        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
            }

            .image-section {
                height: 250px;
                width: 100%;
            }

            .form-section {
                width: 100%;
            }
        }

        .social-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .password-toggle {
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .password-toggle:hover {
            color: #5647E5;
        }



          :root {
            --gold-primary: #caa34a;
            --gold-hover: #b8923d;
            --gold-light: #e5d4a3;
            --gold-dark: #a17d2e;
        }

        /* Update existing color references to gold */
        .bg-\[\#E0DDFF\] {
            background-color: #f5e6c8 !important;
        }

        .text-\[\#393186\],
        .text-\[\#5647E5\] {
            color: var(--gold-primary) !important;
        }

        .bg-\[\#393186\],
        .bg-primary {
            background-color: var(--gold-primary) !important;
        }

        .hover\:bg-\[\#2B208F\]:hover {
            background-color: var(--gold-hover) !important;
        }

        .border-\[\#393186\] {
            border-color: var(--gold-primary) !important;
        }

        .text-\[\#1E1481\] {
            color: var(--gold-dark) !important;
        }

        .hover\:text-\[\#1E1481\]:hover {
            color: var(--gold-dark) !important;
        }

        .hover\:border-\[\#393186\]:hover {
            border-color: var(--gold-primary) !important;
        }

        /* Focus Ring Gold Color */
        .focus\:ring-primary:focus,
        .focus\:border-primary:focus {
            --tw-ring-color: var(--gold-primary);
            border-color: var(--gold-primary);
        }


        /* WhatsApp Icon Style */
.whatsapp-icon {
    color: #25D366;
    font-size: 20px;
    transition: all 0.3s ease;
}

/* Pulse Effect */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Icon animation on focus */
.whatsapp-input:focus + .whatsapp-icon {
    animation: whatsapp-pulse 1.4s infinite;
    border-radius: 50%;
}

/* Optional hover effect */
.whatsapp-input:hover + .whatsapp-icon {
    border-radius: 50%;

}



.whatsapp-zoom {
  display: inline-block;
  color: #25D366;
  font-weight: bold;
  animation: zoomInOut 1.4s ease-in-out infinite;
  text-decoration: none;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}