﻿    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins',sans-serif;
        }

        body {
            min-height: 100vh;
            overflow-x: hidden;
        }


        .container {
            display: flex;
            height: 100vh;
        }

        /* LEFT SIDE */
        /*.left-section {
            flex: 1;
            position: relative;
            background: linear-gradient(135deg, #0f5132, #198754, #14532d);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            padding: 60px;
        }*/

        .left-section {
               flex: 1;
    position: relative;
    background: url(https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1920&q=80);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0 60px;
    overflow: hidden;
    background-size: cover !important;
        }

            /* Dark overlay for better text visibility */
            .left-section::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient( rgba(0, 60, 0, 0.75), rgba(0, 0, 0, 0.65) );
                z-index: 1;
            }

        /* Subtle zoom animation */
        .left-section {
            animation: zoomBg 15s infinite alternate ease-in-out;
        }

        @keyframes zoomBg {
            from {
                background-size: 100%;
            }

            to {
                background-size: 110%;
            }
        }

        .left-content {
            position: relative;
            z-index: 2;
            max-width: 500px;
        }

            .left-content h1 {
                font-size: 42px;
                margin-bottom: 20px;
                font-weight: 600;
                letter-spacing: 1px;
            }

            .left-content p {
                font-size: 17px;
                line-height: 1.7;
                opacity: 0.95;
            }


        /* RIGHT SIDE */
        .right-section {
            flex: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideIn 1.2s ease;
        }

        .login-card {
            width: 100%;
            max-width: 420px;
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            /* box-shadow: 0 15px 40px rgba(0,0,0,0.1); */
        }

        .logo {
                width: 105px;
            display: block;
            margin: 0 auto 5px auto; /* reduced spacing */
        }

        .login-card h2 {
            text-align: center;
            margin-bottom: 18px; /* slightly reduced */
            color: #1f6b1f;
        }

        .input-group {
            position: relative;
            margin-bottom: 20px;
        }

            .input-group label {
                font-size: 14px;
                display: block;
                margin-bottom: 6px;
                color: #333;
            }

            .input-group input {
                width: 100%;
                padding: 12px 42px 12px 12px;
                border-radius: 8px;
                border: 1px solid #ccc;
                font-size: 14px;
                transition: 0.3s;
            }

                .input-group input:focus {
                    border-color: #1f6b1f;
                    box-shadow: 0 0 0 2px rgba(31,107,31,0.15);
                    outline: none;
                }

        .toggle-eye {
            position: absolute;
            right: 12px;
            top: 38px;
            width: 20px;
            height: 20px;
            cursor: pointer;
            fill: #666;
        }

        .remember {
            display: flex;
            align-items: center;
            font-size: 14px;
            margin-bottom: 20px;
        }

            .remember input {
                margin-right: 8px;
            }

        .btn-login {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            background: #1f6b1f;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: 0.3s;
        }

            .btn-login:hover {
                background: #155215;
                transform: translateY(-2px);
            }

        /* Animations */
        @keyframes slideIn {
            from {
                transform: translateX(50px);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Responsive */
        @media(max-width:900px) {
            .container {
                flex-direction: column;
            }

            .left-section {
                height: 40vh;
            }

            .right-section {
                height: 60vh;
            }
        }

        /*@media(max-width:480px) {
            .login-card {
                margin: 20px;
                padding: 30px 20px;
            }
        }*/

        @media(max-width:480px) {
            .logo {
                margin-bottom: 8px;
            }

            .login-card h2 {
                font-size: 20px;
                margin-bottom: 15px;
            }
        }


        .extra-links {
            margin-top: 18px;
            text-align: center;
        }

            .extra-links a {
                text-decoration: none;
                font-size: 14px;
                transition: 0.3s;
            }

        .forgot a {
            color: #1f6b1f;
            font-weight: 500;
        }

            .forgot a:hover {
                text-decoration: underline;
            }

        .signup {
            margin-top: 10px;
            font-size: 14px;
            color: #555;
        }

            .signup a {
                color: #ff7a00;
                font-weight: 500;
            }

                .signup a:hover {
                    text-decoration: underline;
                }
        @media(max-width:900px) {
            .container {
                flex-direction: column;
            }

            .left-section {
                height: 250px; /* fixed smaller height */
                padding: 30px;
                text-align: center;
            }

            .right-section {
                padding: 20px;
            }

            .login-card {
                width: 100%;
                max-width: 100%;
                box-shadow: none;
                border-radius: 12px;
            }
        }
        @media(max-width:768px) {
            .left-section {
                display: none;
            }
        }
