        :root {
            --primary-color: #4CAF50;
            --primary-dark: #388E3C;
            --primary-light: #C8E6C9;
            --secondary-color: #FF9800;
            --dark-color: #2E7D32;
            --light-color: #F1F8E9;
            --text-color: #212121;
            --text-light: #757575;
            --white: #FFFFFF;
            --gray: #F5F5F5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Montserrat", sans-serif;
            color: var(--text-color);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-repeat: no-repeat;
            background-size: 101%;
            background-image: url('../../img/StockCake-Divided_crop_fields_1762566669_upscaled.jpg');
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: none;
        }

        .logo h1 {
            font-size: 1.5rem;
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: 0px;
            line-height: 1.6;
            margin-top: 4px;
        }

        .logo h2 {
            font-size: 1.8rem;
            color: var(--dark-color);
            font-weight: 600;
            letter-spacing: 1px;
            margin-top: -10px;
            line-height: 1.3;
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        /* Login Section */
        .login-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px 0px;
            min-width: 35%;
        }

        .login-container {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
            width: 100%;
            max-width: 450px;
        }

        .login-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .login-logo {
            margin-bottom: 20px;
        }

        .login-logo h1 {
            font-size: 2.2rem;
            color: var(--primary-color);
            font-weight: 700;
            letter-spacing: 0px;
            line-height: 1.6;
            margin-top: 4px;
        }

        .login-logo h2 {
            color: var(--dark-color);
            font-size: 1.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-top: -15px;
            line-height: 1.3;
        }

        .login-header h3 {
            font-size: 1.5rem;
            color: var(--dark-color);
            margin-bottom: 10px;
        }

        .login-header p {
            color: var(--text-light);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .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: var(--primary-color);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .forgot-password:hover {
            color: var(--primary-dark);
        }

        .login-button {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s ease;
            font-size: 1rem;
        }

        .login-button:hover {
            background-color: var(--primary-dark);
        }

        .register-link {
            text-align: center;
            margin-top: 20px;
            color: var(--text-light);
        }

        .register-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .register-link a:hover {
            color: var(--primary-dark);
        }


        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            
            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                gap: 0;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 16px 0;
            }
            
            .login-container {
                padding: 30px 25px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 30px;
            }
        }

        @media screen and (max-width: 576px) {
            .login-section {
                padding: 100px 15px 60px;
            }
            
            .login-header h3 {
                font-size: 1.5rem;
            }
            
            .social-login {
                flex-direction: column;
            }
        }

        
@media screen and (max-width: 480px) {
    body {
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
    }
    
    .login-section {
        padding: 20px 15px;
        
        min-height: 100vh;
    }
    
    .login-container {
        padding: 30px 20px;
        max-width: 100%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }
}