    
        :root {
          --primary-color: #005B3D;
          --light-gray-bg: #f8f9fa;
        }
        body, html {
            height: 100%;
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-gray-bg);
        }
        .wrapper {
            display: flex;
            min-height: 100vh;
        }
        .brand-section {
            /* Updated background properties */
            /* background: linear-gradient(rgba(0, 91, 61, 0.75), rgba(0, 91, 61, 0.75)), url('image.png'); */
            background-size: cover;
            background-position: center;
            
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 45%;
            padding: 2rem;
            text-align: center;
        }
        .form-section {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 55%;
            padding: 3rem;
        }
        .form-container {
            max-width: 450px;
            width: 100%;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.75rem 1rem;
            font-weight: 500;
        }
        .btn-primary:hover {
            background-color: #154231;
            border-color: #154231;
        }
        .form-group {
            position: relative;
        }
        .form-group .form-control {
            padding-left: 2.75rem;
            height: 50px;
            border-radius: 0.5rem;
        }
        .form-group .form-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #adb5bd;
            pointer-events: none;
        }
        .brand-section .logo {
            max-width: 100px;
            margin-bottom: 1.5rem;
        }
        .brand-section h2 {
            font-weight: 700;
        }
        /* Responsive */
        @media (max-width: 991.98px) {
            .wrapper {
                flex-direction: column;
            }
            .brand-section, .form-section {
                width: 100%;
            }
            .brand-section {
                min-height: 250px;
                padding: 2rem 1rem;
            }
            .form-section {
                padding: 2rem 1rem;
            }
        }
