* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f9fff9;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            min-height: 100vh;
            align-items: center;
        }
        
        /* Header & Logo */
        header {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0 30px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .leaf-logo {
            width: 40px;
            height: 40px;
            background-color: #2e7d32;
            border-radius: 50% 50% 50% 0;
            position: relative;
            transform: rotate(45deg);
        }
        
        .leaf-logo:before {
            content: '';
            position: absolute;
            width: 25px;
            height: 35px;
            background-color: #4caf50;
            border-radius: 50% 0;
            top: 5px;
            left: 5px;
        }
        
        .leaf-logo:after {
            content: '';
            position: absolute;
            width: 10px;
            height: 15px;
            background-color: #1b5e20;
            border-radius: 50%;
            top: 10px;
            left: 15px;
        }
        
        .logo-text {
            font-size: 28px;
            font-weight: 700;
            color: #2e7d32;
            letter-spacing: 1px;
        }
        
        .logo-text span {
            color: #ff9800;
        }
        
        /* Hero Section */
        .hero {
            flex: 1;
            padding-right: 40px;
            min-width: 300px;
        }
        
        .hero h1 {
            font-size: 42px;
            color: #1b5e20;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 18px;
            color: #555;
            margin-bottom: 40px;
            max-width: 500px;
        }
        
        /* Stats Section */
        .stats {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
            max-width: 600px;
        }
        
        .stat-item {
            flex: 1;
            min-width: 150px;
        }
        
        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: #2e7d32;
            margin-bottom: 5px;
        }
        
        .stat-text {
            font-size: 15px;
            color: #666;
        }
        
        .sustainable {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 30px;
            color: #2e7d32;
            font-weight: 600;
        }
        
        .sustainable i {
            font-size: 20px;
        }
        
        /* Form Section */
        .form-container {
            flex: 1;
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 100, 0, 0.08);
            min-width: 300px;
            max-width: 500px;
        }
        
        .form-title {
            font-size: 28px;
            color: #2e7d32;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #4caf50;
            box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
        }
        
        .password-hint {
            font-size: 14px;
            color: #888;
            margin-top: 5px;
            display: block;
        }
        
        .btn-primary {
            width: 100%;
            padding: 16px;
            background-color: #4caf50;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 10px;
        }
        
        .btn-primary:hover {
            background-color: #2e7d32;
        }
        
        .divider {
            text-align: center;
            margin: 25px 0;
            color: #888;
            position: relative;
        }
        
        .divider:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background-color: #eee;
        }
        
        .divider span {
            background-color: white;
            padding: 0 15px;
            position: relative;
        }
        
        .signin-link {
            text-align: center;
            margin-top: 25px;
            color: #666;
        }
        
        .signin-link a {
            color: #4caf50;
            text-decoration: none;
            font-weight: 600;
        }
        
        .signin-link a:hover {
            text-decoration: underline;
        }
        
        .terms {
            font-size: 14px;
            color: #777;
            text-align: center;
            margin-top: 25px;
            line-height: 1.5;
        }
        
        .terms a {
            color: #4caf50;
            text-decoration: none;
        }
        
        .terms a:hover {
            text-decoration: underline;
        }
        
        /* Footer */
        footer {
            width: 100%;
            text-align: center;
            padding: 20px 0;
            color: #777;
            font-size: 14px;
            margin-top: 30px;
            border-top: 1px solid #eee;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .container {
                flex-direction: column;
            }
            
            .hero {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }
            
            .stats {
                justify-content: center;
            }
            
            .sustainable {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .stat-item {
                min-width: 120px;
            }
        }