  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(to bottom, 
                #FFFFFF 0%, 
                #FFFFFF 50%, 
                #D2EDCE 100%
            );
            position: relative;
            overflow: hidden;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            animation: fadeIn 1.5s ease-in-out;
        }

        /* Animated background elements */
        .bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        /* Floating circles */
        .circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(42, 125, 46, 0.15);
            animation: float 8s infinite ease-in-out;
        }

        .circle:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .circle:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 20%;
            right: 15%;
            animation-delay: -2s;
        }

        .circle:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 20%;
            animation-delay: -4s;
        }

        .circle:nth-child(4) {
            width: 120px;
            height: 120px;
            bottom: 30%;
            right: 10%;
            animation-delay: -6s;
        }

        .circle:nth-child(5) {
            width: 60px;
            height: 60px;
            top: 50%;
            left: 5%;
            animation-delay: -1s;
        }

        .circle:nth-child(6) {
            width: 90px;
            height: 90px;
            top: 60%;
            right: 8%;
            animation-delay: -3s;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) scale(1); 
                opacity: 0.8;
            }
            50% { 
                transform: translateY(-30px) scale(1.1); 
                opacity: 0.4;
            }
        }

        /* Geometric shapes */
        .shape {
            position: absolute;
            background: rgba(210, 237, 206, 0.4);
            animation: rotate 15s linear infinite;
        }

        .shape.triangle {
            width: 0;
            height: 0;
            background: transparent;
            border-left: 25px solid transparent;
            border-right: 25px solid transparent;
            border-bottom: 45px solid rgba(42, 125, 46, 0.25);
            top: 15%;
            right: 25%;
            animation-delay: -3s;
        }

        .shape.square {
            width: 40px;
            height: 40px;
            background: rgba(210, 237, 206, 0.3);
            top: 70%;
            left: 15%;
            animation-delay: -7s;
        }

        .shape.diamond {
            width: 35px;
            height: 35px;
            background: rgba(42, 125, 46, 0.2);
            transform: rotate(45deg);
            bottom: 15%;
            right: 20%;
            animation-delay: -10s;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Particle dots */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(42, 125, 46, 0.4);
            border-radius: 50%;
            animation: particle 12s infinite linear;
        }

        .particle:nth-child(n+7):nth-child(-n+15) {
            animation-delay: calc(var(--delay) * 1s);
        }

        @keyframes particle {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-10vh) translateX(50px);
                opacity: 0;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        /* Login Form Styles */
        .login-container {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 450px;
            margin: 20px auto;
            border: 1px solid rgba(224, 240, 221, 0.8);
            animation: slideUp 1s ease forwards;
            position: relative;
            z-index: 1;
        }
        
        .login-title {
            font-size: 1.8rem;
            color: #2a7d2e;
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 25px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #2a7d2e;
        }
        
        .form-input {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
        }
        
        .form-input:focus {
            border-color: #2a7d2e;
            box-shadow: 0 0 0 3px rgba(42, 125, 46, 0.2);
            outline: none;
        }
        
        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
            cursor: pointer;
            border: none;
            background: transparent;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }
        
        .password-container {
            position: relative;
        }

        .password-container .form-input {
            padding-right: 46px;
        }

        .field-error {
            margin-top: 6px;
            color: #b42318;
            font-size: 0.82rem;
            font-weight: 500;
        }

        .error-banner {
            margin-bottom: 16px;
            border: 1px solid #fda29b;
            background: #fffbfa;
            color: #b42318;
            border-radius: 10px;
            padding: 10px 12px;
            font-size: 0.9rem;
            text-align: left;
        }

        .hidden {
            display: none !important;
        }
        
        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 0.9rem;
        }
        
        .remember {
            display: flex;
            align-items: center;
        }
        
        .remember input {
            margin-right: 8px;
        }
        
        .forgot-link {
            color: #2a7d2e;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .forgot-link:hover {
            color: #1e5a21;
            text-decoration: underline;
        }
        
        .login-button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(to right, #2a7d2e, #4caf50);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(42, 125, 46, 0.3);
            animation: pulse 2s infinite;
        }
        
        .login-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(42, 125, 46, 0.4);
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .register-link {
            margin-top: 25px;
            font-size: 0.95rem;
            color: #555;
        }
        
        .register-link a {
            color: #2a7d2e;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .register-link a:hover {
            color: #1e5a21;
            text-decoration: underline;
        }
        
        @media (max-width: 600px) {
            .logo {
                font-size: 2.5rem;
            }
            
            .login-container {
                padding: 25px;
            }
            
            .circle {
                display: none;
            }
            
            .remember-forgot {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }