
        :root {
            --primary-color: #006d3f;
            --secondary-color: #0a9b54;
            --accent-color: #2aad4f;
            --light-color: #e9f9f1;
            --dark-color: #044a2a;
        }

        body {
            font-family: "Poppins", sans-serif;
            margin: 0;
            padding: 0;
            height: 100vh;
            overflow: hidden;
            background-color: #f8f9fa;
        }

        



        /* right panel */

        .right-panel {
            background: #fff;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .right-panel::before {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--light-color) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 0;
        }

        .logo-group {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            padding: 20px 0;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .logo-group img {
            width: 80px;
            height: auto;
            flex-shrink: 0;
            transition: transform 0.3s ease;
            filter: grayscale(30%);
        }

        .logo-group img:hover {
            transform: scale(1.1);
            filter: grayscale(0%);
        }

        .login-form {
            width: 100%;
            max-width: 400px;

            padding: 40px;
            border-radius: 20px;

            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }



        .login-form img {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .login-form img:hover {
            transform: scale(1.1) rotate(5deg);
        }

        .login-form h4 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .login-form p {
            color: #666;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .btn-green {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            border: none;
            padding: 12px;
            border-radius: 12px;
            width: 100%;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(10, 155, 84, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-green:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(10, 155, 84, 0.4);
        }

        .btn-green:active {
            transform: translateY(0);
        }

        .btn-green::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(to bottom right,
                    rgba(255, 255, 255, 0.3) 0%,
                    rgba(255, 255, 255, 0) 60%);
            transform: rotate(30deg);
            transition: all 0.3s ease;
        }

        .btn-green:hover::after {
            animation: shine 1.5s infinite;
        }

        @keyframes shine {
            0% {
                transform: rotate(30deg) translateX(-50%) translateY(-50%);
            }

            100% {
                transform: rotate(30deg) translateX(50%) translateY(50%);
            }
        }

        .form-control {
            border-radius: 12px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(10, 155, 84, 0.25);
        }

        .form-check-input:checked {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }

        .form-check-label {
            font-size: 0.9rem;
            color: #666;
        }

        .footer-text {
            color: #666;
            font-size: 0.85rem;
            margin-top: 30px;
            position: relative;
            z-index: 1;
        }



        /* Responsive adjustments */
        @media (max-width: 991px) {
            body {
                overflow-y: auto;
            }

            .left-panel,
            .right-panel {
                height: auto;
                padding: 30px 20px;
            }

            .left-panel h2 {
                font-size: 2rem;
            }

            .login-form {
                padding: 30px;
            }
        }

        @media (max-width: 600px) {
            .logo-group img {
                width: 60px;
            }

            .login-form {
                padding: 25px 20px;
            }

            .stats p {
                font-size: 1.5rem;
            }
        }
