 body {
            background-color: #f8f9fa;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            font-family: 'Poppins', sans-serif;
        }
        .login-container {
            display: flex;
            width: 100%;
            max-width: 1000px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        .illustration-section {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #fff;
            padding: 2rem;
        }
        .illustration-section img {
            max-width: 100%;
            height: auto;
        }
        .login-section {
            flex: 1;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin: 20px;
            border: 1px solid #0b7dfe;
            border-radius: 30px;
        }
        .login-header {
            text-align: center;
            /* margin-bottom: 1.5rem; */
        }
        .login-logo {
            height: 112px;
            margin-bottom: 0.5rem;
        }
        .login-title {
            font-size: 1.25rem;
            font-weight: 500;
            color: #000000e8;
            padding-bottom: 10px;
        }
        .form-control {
            padding: 0.75rem 1rem;
            border-radius: 0.375rem;
            border: 1px solid #ced4da;
            font-size: 0.875rem;
        }
        .form-control:focus {
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
            border-color: #0d6efd;
        }
        .input-group {
            position: relative;
        }
        .input-group-text {
            background-color: #fff;
            border: 1px solid #ced4da;
            border-right: none;
            color: #6c757d;
            border-radius: 0.375rem 0 0 0.375rem;
        }
        .input-group .form-control {
            border-radius: 0 0.375rem 0.375rem 0;
        }
        .password-toggle {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #6c757d;
            z-index: 10;
        }
        .password-wrapper {
            position: relative;
        }
        .options-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 1rem 0;
            font-size: 0.875rem;
        }
        .form-check-input:checked {
            background-color: #0d6efd;
            border-color: #0d6efd;
        }
        .btn-login {
            width: 100%;
            padding: 0.75rem;
            font-weight: 500;
            background: linear-gradient(to right, #0d6efd, #a855f7);
            border: none;
            border-radius: 0.375rem;
            color: #fff;
            font-size: 1rem;
        }
        .register-text {
            text-align: center;
            color: #6c757d;
            font-size: 0.875rem;
            margin-top: 1rem;
        }
        .register-link {
            color: #0d6efd;
            text-decoration: none;
            font-weight: 500;
        }
        .forgot-password {
            color: #0d6efd;
            text-decoration: none;
            font-weight: 500;
        }
        .forget-pass p{
            font-size: 14px;
            color: #000000c7;
        }
        .forget-pass h4{
            padding-bottom: 10px;
            color: #000000cf;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
                max-width: 90%;
            }
            .illustration-section {
                padding: 1rem;
            }
            .login-section {
                padding: 1.5rem;
            }
            .login-title {
                font-size: 1.1rem;
            }
            .form-control {
                font-size: 0.85rem;
                padding: 0.65rem 1rem;
            }
            .btn-login {
                padding: 0.65rem;
                font-size: 0.9rem;
            }
            .options-row, .register-text {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 576px) {
            .illustration-section {
                display: none;
            }
            .login-container {
                max-width: 100%;
                border-radius: 0;
                box-shadow: none;
            }
            .login-section {
                padding: 1rem;
            }
        }