        body {
            background: #000;
            color: #00ff88;
            font-family: 'Orbitron', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }

        .login-container {
            background: #0a0a0a;
            padding: 40px;
            border: 2px solid #00ff88;
            border-radius: 10px;
            box-shadow: 0 0 20px #00ff88;
            text-align: center;
            width: 300px;
        }

        .login-container h2 {
            margin-bottom: 20px;
            font-size: 22px;
            color: #00ff88;
        }

        input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            background: black;
            color: #00ff88;
            border: 1px solid #00ff88;
            border-radius: 5px;
            font-family: 'Orbitron', sans-serif;
        }

        input::placeholder {
            color: #00ff88aa;
        }

        button {
            background: #00ff88;
            color: #000;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            font-family: 'Orbitron', sans-serif;
            transition: 0.3s ease;
        }

        button:hover {
            background: #00cc66;
            box-shadow: 0 0 10px #00ff88;
        }

        .support {
            margin-top: 15px;
        }

        .support a {
            color: #00ff88;
            text-decoration: none;
            font-size: 14px;
        }

        .support a:hover {
            text-decoration: underline;
        }
    </style>