        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(-45deg, #006B9F, #0096d1, #024961, #0096d1);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .login-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            overflow: hidden;
            width: 100%;
            max-width: 450px;
            min-height: 550px;
            animation: slideIn 0.6s ease-out;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .login-header {
            padding: 40px 40px 30px;
            text-align: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
            height: 50px;
        }
        
        @keyframes waveMove {
            0%, 100% { transform: translateX(0); opacity: 0.8; }
            50% { transform: translateX(3px); opacity: 1; }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .logo-container svg path {
            animation: waveMove 3s ease-in-out infinite;
        }
        
        .logo-container svg path:nth-child(1) { animation-delay: 0s; }
        .logo-container svg path:nth-child(2) { animation-delay: 0.2s; }
        .logo-container svg path:nth-child(3) { animation-delay: 0.4s; }
        .logo-container svg path:nth-child(4) { animation-delay: 0.6s; }
        .logo-container svg path:nth-child(5) { animation: pulse 3s ease-in-out infinite; }
        
        .logo-primary-color { fill: #024961; }
        .logo-accent-color { fill: #0096d1; }
        
        .welcome-text {
            color: #024961;
            font-size: 24px;
            font-weight: 600;
            margin: 0;
        }
        
        .login-body {
            padding: 0 40px 40px;
        }
        
        .step {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .step.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .user-profile {
            text-align: center;
            padding: 20px 0;
        }
        
        .user-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 15px;
            border: 4px solid #0096d1;
            animation: profileSlide 0.6s ease;
            object-fit: cover;
            box-shadow: 0 5px 20px rgba(0,150,209,0.3);
        }
        
        @keyframes profileSlide {
            from { 
                transform: scale(0) rotate(-180deg);
                opacity: 0;
            }
            to { 
                transform: scale(1) rotate(0);
                opacity: 1;
            }
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: white;
            margin-bottom: 15px;
        }
        
        .form-control:focus {
            border-color: #0096d1;
            box-shadow: 0 0 0 3px rgba(0,150,209,0.1);
            outline: none;
        }
        
        .btn-login {
            width: 100%;
            padding: 15px;
            background: #0096d1;
            border: none;
            color: white;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .btn-login:hover {
            background: #024961;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,150,209,0.3);
        }
        
        .btn-login:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        .otp-inputs {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 20px 0;
        }
        
        .otp-input {
            width: 50px;
            height: 50px;
            text-align: center;
            font-size: 24px;
            font-weight: 600;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
        }
        
        .otp-input:focus {
            border-color: #0096d1;
            outline: none;
        }
        
        #loadingOverlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255,255,255,0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        
        #loadingOverlay.active {
            display: flex;
        }
        
        .spinner {
            width: 60px;
            height: 60px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #0096d1;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .error-msg {
            color: #dc3545;
            font-size: 14px;
            margin-top: 10px;
            display: none;
        }
        
        .success-msg {
            color: #28a745;
            font-size: 14px;
            margin-top: 10px;
            display: none;
        }
        
        .forgot-link {
            text-align: center;
            margin-top: 20px;
        }
        
        .forgot-link a {
            color: #0096d1;
            font-size: 14px;
            text-decoration: none;
        }
        
        .forgot-link a:hover {
            text-decoration: underline;
        }
        
        .email-sent-msg {
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 14px;
        }

        
        /* Logo animations for loader */
        @keyframes waveMove {
            0%, 100% { transform: translateX(0); opacity: 0.6; }
            50% { transform: translateX(5px); opacity: 1; }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        #loadingOverlay svg path {
            animation: waveMove 2s ease-in-out infinite;
        }
        
        #loadingOverlay svg path:nth-child(1) { animation-delay: 0s; }
        #loadingOverlay svg path:nth-child(2) { animation-delay: 0.2s; }
        #loadingOverlay svg path:nth-child(3) { animation-delay: 0.4s; }
        #loadingOverlay svg path:nth-child(4) { animation-delay: 0.6s; }
        #loadingOverlay svg path:nth-child(5) { animation: pulse 2s ease-in-out infinite; }
        
        .logo-primary-color {
            fill: #024961;
        }
        
        .logo-accent-color {
            fill: #0096d1;
        }
