    <style>
        html, body, * {
  font-family: 'DM Sans', sans-serif !important;
}

/* Paragraphs and normal text */
body, p, span, li, a, input, button {
  font-weight: 400 !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700 !important;
  font-family: 'DM Sans', sans-serif !important;
}


       body {
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
        }

        .login-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .login-left {
            flex: 1;
            background: linear-gradient(135deg, #1c7fbf 0%, #1e98e6 100%);
            color: white;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

       
        .login-right {
            flex: 1;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .welcome-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .welcome-subtitle {
            font-size: 15px;
            margin-bottom: 0px;
            opacity: 0.9;
        }

        .features-list {
            list-style: none;
            margin-top: 30px;
        }

        .features-list li {
            margin-bottom: 15px;
            font-size: 15px;
            display: flex;
            align-items: center;
        }

        .features-list i {
            margin-right: 15px;
            font-size: 1.2rem;
            color: #4cd964;
        }

        .login-title {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #1e3c72;
            text-align: center;
        }

        .login-subtitle {
            text-align: center;
            margin-bottom: 30px;
            color: #666;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }

        .form-control:focus {
            border-color: #1e3c72;
            outline: none;
        }

        .password-container {
            position: relative;
        }

        .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #666;
        }

        .login-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .remember-me {
            display: flex;
            align-items: center;
        }

        .remember-me input {
            margin-right: 8px;
        }

        .forgot-password {
            color: #1e3c72;
            text-decoration: none;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .login-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #1c7fbf 0%, #1e98e6 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
        }

        .register-link {
            text-align: center;
            margin-top: 25px;
            color: #666;
        }

        .register-link a {
            color: #1e3c72;
            text-decoration: none;
            font-weight: 600;
        }

        .register-link a:hover {
            text-decoration: underline;
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 30px 0;
            color: #666;
        }

        .divider::before,
        .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #ddd;
        }

        .divider span {
            padding: 0 15px;
        }

        .social-login {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .social-btn:hover {
            transform: translateY(-3px);
        }

        .google {
            background-color: #db4437;
            color: white;
        }

        .facebook {
            background-color: #4267b2;
            color: white;
        }

        .twitter {
            background-color: #1da1f2;
            color: white;
        }

        .home-button-container {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 1000;
        }

        .home-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background-color: #f8f9fa;
            color: #333;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }

        .home-button:hover {
            background-color: #e9ecef;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .home-button i {
            font-size: 16px;
        }

        .agree-label {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .agree-label input {
            margin-right: 10px;
            margin-top: 4px;
        }

        .agree-label a {
            color: #1e3c72;
            text-decoration: none;
        }

        .agree-label a:hover {
            text-decoration: underline;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
            }
            
            .login-left {
                padding: 40px 20px;
            }
            
            .home-button-container {
                top: 10px;
                left: 10px;
            }
            
            .home-button {
                padding: 8px 12px;
                font-size: 14px;
            }
        }
    </style>
