        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8fafd;
            background-image:
                radial-gradient(circle at 15% 50%, rgba(177, 211, 57, 0.25), transparent 30%),
                radial-gradient(circle at 85% 30%, rgba(16, 199, 202, 0.25), transparent 30%);
            overflow: hidden;
            color: #1a1f36;
            position: relative;
        }

        /* Ambient glowing orbs behind the login box */
        .ambient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
            opacity: 0.8;
            animation: float 10s ease-in-out infinite alternate;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: rgba(177, 211, 57, 0.4);
            top: -100px;
            left: -100px;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: rgba(16, 199, 202, 0.35);
            bottom: -150px;
            right: -100px;
            animation-delay: -5s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) scale(1);
            }

            100% {
                transform: translateY(30px) scale(1.1);
            }
        }

        /* Login Container - Glassmorphism */
        .login-container {
            position: relative;
            z-index: 10;
            background: rgba(255, 255, 255, 0.65);
            width: 420px;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .login-container img {
            width: 140px;
            margin-bottom: 30px;
        }

        .login-container h2 {
            margin-bottom: 30px;
            font-weight: 600;
            font-size: 24px;
            color: #111827;
            letter-spacing: -0.3px;
        }

        .form-alert {
            margin-bottom: 20px;
            padding: 12px;
            border-radius: 8px;
            background: rgba(227, 30, 36, 0.08);
            border: 1px solid rgba(227, 30, 36, 0.2);
            color: #d32f2f;
            font-size: 13px;
            text-align: center;
        }

        /* Input Fields */
        .input-group {
            margin-bottom: 22px;
            text-align: left;
            position: relative;
        }

        .input-group label {
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 8px;
            display: block;
            color: #4b5563;
        }

        .input-group input {
            width: 100%;
            padding: 15px 16px;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 10px;
            font-size: 15px;
            color: #111827;
            transition: all 0.3s ease;
            font-family: inherit;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01) inset;
        }

        .input-group input::placeholder {
            color: #9ca3af;
        }

        .input-group input:focus {
            border-color: rgba(16, 199, 202, 0.6);
            background: #ffffff;
            outline: none;
            box-shadow: 0 0 0 4px rgba(16, 199, 202, 0.15);
        }

        /* Premium Gradient Button */
        .login-btn {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 10px;
            background: linear-gradient(135deg, #b1d339 0%, #10c7ca 100%);
            color: #ffffff;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 0.5px;
            cursor: pointer;
            margin-top: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(16, 199, 202, 0.25);
            position: relative;
            overflow: hidden;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .login-btn::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.5s ease;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(16, 199, 202, 0.35);
        }

        .login-btn:hover::before {
            left: 100%;
        }

        /* Extra Links */
        .extra-links {
            margin-top: 25px;
            font-size: 14px;
        }

        .extra-links a {
            text-decoration: none;
            color: #6b7280;
            transition: all 0.3s ease;
        }

        .extra-links a:hover {
            color: #10c7ca;
        }

        /* Responsive */
        @media(max-width:480px) {
            .login-container {
                width: 90%;
                padding: 40px 25px;
                border-radius: 16px;
            }
        }