
/*==========================
Reset
===========================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
       
        body {
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
            background: linear-gradient(135deg, #0A2A66 0%, #1a4a8a 50%, #2d6bb8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .login-container {
            width: 100%;
            max-width: 440px;
            margin: 0 auto;
        }
        
        .login-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px 35px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: slideUp 0.6s ease;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .login-header {
            text-align: center;
            margin-bottom: 35px;
        }
        
        .login-header .icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0A2A66, #1a4a8a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 30px;
            color: #fff;
            box-shadow: 0 10px 30px rgba(10, 42, 102, 0.3);
        }
        
        .login-header h2 {
            color: #0A2A66;
            font-weight: 700;
            font-size: 26px;
            margin-bottom: 5px;
        }
        
        .login-header p {
            color: #6c757d;
            font-size: 14px;
        }
        
        /* ✅ Floating Label Styles */
        .floating-group {
            position: relative;
            margin-bottom: 28px;
        }
        
        .floating-group .floating-label {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
            font-size: 14px;
            pointer-events: none;
            transition: all 0.3s ease;
            background: transparent;
            padding: 0 4px;
        }
        
        .floating-group .form-control {
            width: 100%;
            height: 56px;
            padding: 16px 16px 0 16px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: #f8f9fa;
            color: #2c3e50;
        }
        
        .floating-group .form-control:focus {
            border-color: #0A2A66;
            box-shadow: 0 0 0 4px rgba(10, 42, 102, 0.1);
            background: #ffffff;
            outline: none;
        }
        
        .floating-group .form-control:focus ~ .floating-label,
        .floating-group .form-control:not(:placeholder-shown) ~ .floating-label {
            top: 10px;
            transform: translateY(0);
            font-size: 11px;
            color: #0A2A66;
            font-weight: 600;
        }
        
        .floating-group .form-control::placeholder {
            color: transparent;
        }
        
        .floating-group .input-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #adb5bd;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .floating-group .form-control:focus ~ .input-icon {
            color: #0A2A66;
        }
        
        /* ✅ Password Toggle */
        .toggle-password {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #adb5bd;
            cursor: pointer;
            font-size: 18px;
            padding: 5px;
            z-index: 2;
        }
        
        .toggle-password:hover {
            color: #0A2A66;
        }
        
        /* ✅ Button */
        .btn-login {
            width: 100%;
            height: 56px;
            background: linear-gradient(135deg, #0A2A66, #1a4a8a);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(10, 42, 102, 0.3);
        }
        
        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(10, 42, 102, 0.4);
        }
        
        .btn-login:active {
            transform: translateY(0);
        }
        
        /* ✅ Links */
        .login-links {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            font-size: 13px;
        }
        
        .login-links a {
            color: #0A2A66;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .login-links a:hover {
            color: #2d6bb8;
            text-decoration: underline;
        }
        
        /* ✅ Alert Messages */
        .alert-custom {
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .alert-custom i {
            font-size: 18px;
        }
        
        .alert-danger-custom {
            background: #fde8e8;
            color: #a94442;
            border: 1px solid #f5c6cb;
        }
        
        .alert-success-custom {
            background: #e8f5e9;
            color: #2e7d32;
            border: 1px solid #c3e6cb;
        }
        
        /* ✅ Contact Input with Country Code */
        .contact-input-wrapper {
            position: relative;
        }
        
        .contact-input-wrapper .country-code {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
            font-weight: 600;
            font-size: 14px;
            z-index: 1;
        }
      
        .contact-input-wrapper .form-control:focus ~ .country-code {
            color: #0A2A66;
        }
        
        /* ✅ Responsive */
        @media (max-width: 576px) {
            .login-card {
                padding: 30px 20px;
            }
            .login-header h2 {
                font-size: 22px;
            }
            .login-links {
                flex-direction: column;
                gap: 8px;
                align-items: center;
            }
        }
  