        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #ffff;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }

        .main-container {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1000px;
        }

        .login-wrapper {
            display: flex;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(30px);
            border-radius: 28px;
            box-shadow: 
                0 40px 100px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .login-image {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 50%;
            background: #126d5e;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .login-image .decorative-shape {
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            bottom: -80px;
            left: -80px;
        }

        .logo-container {
            position: relative;
            z-index: 2;
            margin-bottom: 20px;
        }

        .login-image img {
            width: 180px;
            height: auto;
            filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
            animation: floatLogo 5s infinite ease-in-out;
            transition: transform 0.3s ease;
        }

        .welcome-message {
            font-size: 34px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            text-shadow: 
                0 2px 10px rgba(0, 0, 0, 0.1),
                0 4px 20px rgba(0, 0, 0, 0.15);
            letter-spacing: -0.5px;
            position: relative;
            z-index: 2;
        }

        .welcome-description {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
            animation: fadeInScale 0.8s ease-out 0.4s backwards;
        }

        .stats-container {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin-top: 35px;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            padding: 25px 20px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }

        .stat-item:hover::before {
            left: 100%;
        }

        .stat-item:hover {
            transform: translateY(-8px) scale(1.05);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .stat-number {
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            display: block;
            margin-bottom: 8px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            letter-spacing: -1px;
        }

        .stat-label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.95);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        .form-container {
            padding: 60px 50px;
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        h2 {
            font-size: 38px;
            font-weight: 800;
            background: #126d5e;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            text-align: center;
            letter-spacing: -1px;
            position: relative;
        }

        .subtitle {
            font-size: 15px;
            color: #6c757d;
            text-align: center;
            margin-bottom: 45px;
            margin-top: 15px;
        }

        .form-group {
            margin-bottom: 28px;
            animation: fadeInLeft 0.6s ease-out backwards;
        }

        .form-group:nth-child(1) {
            animation-delay: 0.1s;
        }

        .form-group:nth-child(2) {
            animation-delay: 0.2s;
        }


        label {
            font-size: 14px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
            display: block;
            transition: color 0.3s ease;
        }

        .input-wrapper {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #95a5a6;
            font-size: 18px;
            z-index: 1;
            transition: all 0.3s ease;
        }

        input[type="text"]:focus ~ .input-icon,
        input[type="email"]:focus ~ .input-icon,
        input[type="password"]:focus ~ .input-icon {
            color: #667eea;
            transform: translateY(-50%) scale(1.1);
        }

        input[type="text"], 
        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: 18px 20px 18px 52px;
            border: 2px solid #e8ecf1;
            border-radius: 14px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #f8f9fa;
            position: relative;
        }

        input[type="text"]:focus, 
        input[type="email"]:focus,
        input[type="password"]:focus {
            border-color: #667eea;
            background: #fff;
            outline: none;
            box-shadow: 
                0 0 0 4px rgba(102, 126, 234, 0.1),
                0 8px 20px rgba(102, 126, 234, 0.15);
            transform: translateY(-3px);
        }

        input[type="text"]:hover,
        input[type="email"]:hover,
        input[type="password"]:hover {
            border-color: #d0d7de;
            background: #fff;
        }

        .password-wrapper {
            position: relative;
        }

        .toggle-password {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #95a5a6;
            font-size: 18px;
            transition: all 0.3s ease;
            z-index: 2;
            padding: 8px;
            border-radius: 50%;
        }

        .toggle-password:hover {
            color: #667eea;
            background: rgba(102, 126, 234, 0.1);
            transform: translateY(-50%) scale(1.1);
        }

        .toggle-password:active {
            transform: translateY(-50%) scale(0.95);
        }

        .forgot-password {
            text-align: right;
            margin-top: -15px;
            margin-bottom: 28px;
        }

        .forgot-password a {
            color: #667eea;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .forgot-password a:hover {
            color: #764ba2;
        }

        .error-message {
            color: #e74c3c;
            font-size: 14px;
            background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: none;
            border-left: 5px solid #e74c3c;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
        }

        .error-message i {
            margin-right: 10px;
        }

        input[type="submit"] {
            width: 100%;
            padding: 18px;
            background: #126d5e;
            color: #fff;
            border: none;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        input[type="submit"]::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s;
        }

        input[type="submit"]:hover::before {
            left: 100%;
        }

        input[type="submit"]::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        input[type="submit"]:hover::after {
            width: 300px;
            height: 300px;
        }

        input[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 12px 30px rgba(102, 126, 234, 0.5),
                0 0 0 8px rgba(102, 126, 234, 0.1);
        }

        input[type="submit"]:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 35px 0;
            color: #95a5a6;
            font-size: 13px;
            font-weight: 500;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            border-bottom: 2px solid #e8ecf1;
        }

        .divider span {
            padding: 0 18px;
            background: #fff;
            position: relative;
            z-index: 1;
        }

        .social-login {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-btn {
            flex: 1;
            padding: 14px;
            border: 2px solid #e8ecf1;
            border-radius: 12px;
            background: #fff;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #2c3e50;
            position: relative;
            overflow: hidden;
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(102, 126, 234, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.4s, height 0.4s;
        }

        .social-btn:hover::before {
            width: 200%;
            height: 200%;
        }

        .social-btn:hover {
            border-color: #667eea;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
        }

        .social-btn:active {
            transform: translateY(-1px);
        }

        .social-btn i {
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .social-btn:hover i {
            transform: scale(1.2) rotate(5deg);
        }

        .register-link {
            margin-top: 25px;
            text-align: center;
            color: #6c757d;
            font-size: 14px;
        }

        .register-link a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }

        .register-link a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        footer {
            position: fixed;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: rgba(255, 255, 255, 0.95);
            font-size: 13px;
            z-index: 1000;
            font-weight: 500;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 25px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /*  Loading State */
        .btn-loading {
            pointer-events: none;
            opacity: 0.8;
            position: relative;
        }

        .btn-loading::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            top: 50%;
            left: 50%;
            margin-left: -12px;
            margin-top: -12px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
        }


        /* Success Message */
        .success-message {
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            color: #155724;
            border-left: 5px solid #28a745;
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: none;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
            font-weight: 600;
        }

        .success-message i {
            margin-right: 10px;
        }

        /* Input validation states */
        input.valid {
            border-color: #28a745;
            background: #f0fff4;
        }

        input.invalid {
            border-color: #e74c3c;
            background: #fff5f5;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .login-wrapper {
                flex-direction: column-reverse;
            }

            .login-image,
            .form-container {
                width: 100%;
            }

            .login-image {
                padding: 50px 35px;
            }

            .form-container {
                padding: 45px 35px;
            }

            h2 {
                font-size: 32px;
            }

            .stats-container {
                gap: 20px;
            }

            .stat-item {
                padding: 20px 15px;
            }

            .welcome-message {
                font-size: 28px;
            }
        }

        @media (max-width: 576px) {
            body {
                padding: 10px;
            }

            .login-wrapper {
                border-radius: 20px;
            }

            .form-container {
                padding: 35px 25px;
            }

            h2 {
                font-size: 26px;
            }

            .welcome-message {
                font-size: 24px;
            }

            input[type="text"], 
            input[type="password"] {
                padding: 16px 18px 16px 48px;
                font-size: 14px;
            }

            input[type="submit"] {
                padding: 16px;
                font-size: 15px;
            }

            .stats-container {
                flex-direction: column;
                gap: 15px;
            }

            .stat-item {
                padding: 18px 15px;
            }

            .social-login {
                flex-direction: column;
            }

            footer {
                font-size: 11px;
                padding: 8px 20px;
            }
        }

        *:focus-visible {
            outline: 3px solid rgba(102, 126, 234, 0.5);
            outline-offset: 2px;
        }

        /* Smooth transitions for all interactive elements */
        a, button, input, .social-btn {
            -webkit-tap-highlight-color: transparent;
        }

        /* Print styles */
        @media print {
            body {
                background: white;
            }
            
            .login-wrapper {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }