@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

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

body, html {
    height: 100%;
    background-color: #000;
    color: #00ff99;
    font-family: 'Share Tech Mono', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 400px;
    width: 100%;
    padding: 30px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid #00ff99;
    border-radius: 10px;
    box-shadow: 0 0 20px #00ff99, 0 0 40px #00ff99 inset;
}

.glitch {
    font-size: 2em;
    color: #00ff99;
    text-shadow: 0 0 5px #00ff99, 0 0 20px #00ff99;
    animation: glitch 1s infinite;
    margin-bottom: 20px;
}

@keyframes glitch {
    0% { text-shadow: 2px 0 red, -2px 0 blue; }
    50% { text-shadow: -2px 0 red, 2px 0 blue; }
    100% { text-shadow: 2px 0 red, -2px 0 blue; }
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: black;
    color: #00ff99;
    border: 1px solid #00ff99;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 0 10px #00ff99;
    text-align: center;
}

input[type="submit"],
a.btn-neon {
    display: inline-block;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: none;
    border: 2px solid #00ff99;
    color: #00ff99;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 0 10px #00ff99;
    transition: 0.3s;
}

input[type="submit"]:hover,
a.btn-neon:hover {
    background-color: #00ff99;
    color: black;
    box-shadow: 0 0 15px #00ff99;
}

footer {
    margin-top: 25px;
    font-size: 12px;
    color: #00ff99;
    opacity: 0.8;
    text-shadow: 0 0 5px #00ff99;
}

#responseText {
    max-height: 300px;
    overflow-y: auto;
    white-space: pre-wrap;
    padding: 15px;
    border: 1px solid #00ff99;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 10px #00ff99 inset;
    color: #00ff99;
    text-align: left;
    margin-top: 10px;
}

.disclaimer {
    margin-top: 30px;
    font-size: 14px;
    color: #00ff99;
    opacity: 0.9;
    text-shadow: 0 0 5px #00ff99;
}
