       .form-header {
            background: linear-gradient(to right, #4b6cb7, #182848);
            color: white;
            text-align: center;
            padding: 25px 20px;
        }
        
        .form-header h1 {
            font-size: 28px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        
        .form-header p {
            opacity: 0.9;
            font-size: 16px;
        }
        
        .form-body {
            padding: 30px;
        }
        
        .form-group {
            margin-bottom: 22px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #FFFFFF;
            font-size: 16px;
        }
        
        .form-group label.required::after {
            content: "*";
            color: #e53e3e;
            margin-left: 4px;
        }
        
        .form-control {
            width: 100%;
            padding: 14px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: #f8fafc;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #4b6cb7;
            box-shadow: 0 0 0 3px rgba(75, 108, 183, 0.2);
        }
        
        .form-control.error {
            border-color: #e53e3e;
            background-color: #fff8f8;
        }
        
        .error-message {
            color: #e53e3e;
            font-size: 14px;
            margin-top: 6px;
            display: block;
            padding-left: 2px;
        }
        
        .submit-container {
            text-align: center;
            margin-top: 10px;
        }
        
        .btn-submit {
            background: linear-gradient(to right, #4b6cb7, #182848);
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(75, 108, 183, 0.4);
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(75, 108, 183, 0.5);
        }
        
        .btn-submit:active {
            transform: translateY(0);
        }
        
        .forgot-password {
            text-align: right;
            margin-top: 8px;
        }
        
        .forgot-password a {
            color: #4b6cb7;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.2s;
        }
        
        .forgot-password a:hover {
            color: #2c5282;
            text-decoration: underline;
        }
        
        .form-footer {
            text-align: center;
            padding: 15px 20px;
            background-color: #edf2f7;
            color: #4a5568;
            font-size: 14px;
            border-top: 1px solid #e2e8f0;
			width:100%
        }
        
        .form-footer a {
            color: #4b6cb7;
            text-decoration: none;
            font-weight: 500;
        }
        
        .form-footer a:hover {
            text-decoration: underline;
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 25px 0;
        }
        
        .divider::before,
        .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #cbd5e0;
        }
        
        .divider span {
            padding: 0 15px;
            color: #718096;
            font-weight: 500;
        }
        
        .social-login {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }
        
        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #e2e8f0;
            background: white;
        }
        
        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .google {
            color: #DB4437;
        }
        
        .facebook {
            color: #3b5998;
        }
        
        .apple {
            color: #000;
        }
        
        @media (max-width: 480px) {
            .form-body {
                padding: 20px;
            }
            
            .form-header h1 {
                font-size: 24px;
            }
            
            .btn-submit {
                font-size: 16px;
                padding: 12px 24px;
            }
            
            .social-login {
                gap: 15px;
            }
            
            .social-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }