:root {
            --primary-color: #2e7d32;
            --primary-dark: #1b5e20;
            --secondary-color: #f5f5f5;
            --text-color: #333;
            --light-text: #666;
            --error-color: #d32f2f;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--secondary-color);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .loginContainer {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            width: 100%;
            max-width: 420px;
            text-align: center;
            animation: fadeIn 0.5s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .logo {
            width: 80px;
            margin-bottom: 1rem;
        }
        
        .loginHeader {
            margin-bottom: 2rem;
        }
        
        .loginHeader h1 {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        
        .loginHeader p {
            color: var(--light-text);
            font-size: 1rem;
        }
        
        .inputGroup {
            margin-bottom: 1.5rem;
            text-align: left;
            position: relative;
        }
        
        .inputGroup label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-color);
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .inputGroup input {
            width: 100%;
            padding: 0.9rem 1rem 0.9rem 2.5rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .inputGroup input:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
        }
        
        .inputIcon {
            position: absolute;
            left: 1rem;
            top: 2.5rem;
            color: var(--light-text);
        }
        
        .forgotPassword {
            text-align: right;
            margin-bottom: 1.5rem;
        }
        
        .forgotPassword a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }
        
        .forgotPassword a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        
        .login-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem;
            width: 100%;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 1.5rem;
        }

        .login-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
        }

        .login-btn:active {
            transform: translateY(0);
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
            color: var(--light-text);
            font-size: 0.8rem;
        }
        
        .divider::before, .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #ddd;
            margin: 0 0.5rem;
        }
        
        .socialLogin {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .socialBtn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 1px solid #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .socialBtn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
        
        .socialBtn i {
            font-size: 1.2rem;
        }
        
        .facebook { color: #3b5998; }
        .google { color: #db4437; }
        .twitter { color: #1da1f2; }
        
        .registerLink {
            color: var(--light-text);
            font-size: 0.9rem;
        }
        
        .registerLink a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }
        
        .registerLink a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        
        .errorMessage {
            color: var(--error-color);
            font-size: 0.8rem;
            margin-top: 0.5rem;
            text-align: left;
            display: none;
        }
        
        .passwordContainer {
            position: relative;
        }
        
        .togglePassword {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: var(--light-text);
        }
        
        @media (max-width: 480px) {
            .loginContainer {
                padding: 1.5rem;
                margin: 1rem;
            }
            
            body {
                background-attachment: scroll;
            }
        }