 @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            background: radial-gradient(circle at top, #1e3150, #0d0d0d);
            font-family: 'Poppins', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .login-container {
            background: rgba(18, 18, 18, 0.9);
            padding: 40px;
            width: 380px;
            border-radius: 20px;
            box-shadow: 0 0 20px #00aaff, 0 0 40px #ff6600;
            border: 2px solid #00aaff;
            animation: glow 3s infinite alternate;
        }

        @keyframes glow {
            0% { box-shadow: 0 0 20px #00aaff; }
            100% { box-shadow: 0 0 30px #ff6600; }
        }

        .logo {
            text-align: center;
            font-family: 'Press Start 2P', cursive;
            color: #00aaff;
            font-size: 22px;
            text-shadow: 0 0 10px #00aaff, 0 0 20px #ff6600;
            margin-bottom: 25px;
        }

        .login-container h2 {
            color: #ffffff;
            text-align: center;
            font-size: 18px;
            font-family: 'Press Start 2P', cursive;
            margin-bottom: 25px;
        }

        .input-group {
            margin-bottom: 20px;
        }

        label {
            color: #ff6600;
            font-size: 14px;
            font-weight: 600;
        }

        input {
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            border: 2px solid #00aaff;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            margin-top: 5px;
            font-size: 14px;
            transition: 0.3s;
        }

        input:focus {
            border-color: #ff6600;
            box-shadow: 0 0 10px #ff6600;
            outline: none;
        }

        .btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #00aaff, #ff6600);
            border: none;
            border-radius: 12px;
            font-family: 'Press Start 2P', cursive;
            color: #fff;
            cursor: pointer;
            font-size: 14px;
            margin-top: 10px;
            transition: 0.3s;
            text-shadow: 0 0 5px black;
        }

        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px #ff6600;
        }

        .footer-text {
            margin-top: 20px;
            color: #ffffffaa;
            text-align: center;
            font-size: 12px;
            font-family: 'Poppins';
        }
 .password-box {
            position: relative;
        }

        .toggle-password {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #00aaff;
            font-size: 14px;
        }