body {
    background-color: #000;
    color: #0f0;
    font-family: 'VT323', monospace;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

/* CRT Scanline effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 10;
}

.container {
    width: 800px;
    max-width: 90%;
    border: 2px solid #0f0;
    padding: 2rem;
    box-shadow: 0 0 20px #0f0;
    background-color: rgba(0, 20, 0, 0.9);
    position: relative;
    z-index: 1;
}

h1,
h2 {
    text-shadow: 0 0 5px #0f0;
    margin-top: 0;
}

h1 {
    border-bottom: 2px solid #0f0;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.blink {
    animation: blinker 1s linear infinite;
    color: #0f0;
    font-weight: bold;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.alerts {
    margin-bottom: 1rem;
}

.alert {
    border: 1px solid #f00;
    color: #f00;
    padding: 0.5rem;
    background: rgba(50, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

main {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.panel {
    flex: 1;
    min-width: 300px;
    border: 1px dashed #0f0;
    padding: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input[type="file"],
input[type="password"] {
    width: 100%;
    background: #000;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 0.5rem;
    font-family: 'VT323', monospace;
    font-size: 1rem;
    box-sizing: border-box;
}

button {
    background: #000;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 0.5rem 1rem;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

button:hover {
    background: #0f0;
    color: #000;
    box-shadow: 0 0 10px #0f0;
}

footer {
    margin-top: 2rem;
    text-align: center;
    border-top: 1px solid #0f0;
    padding-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.social {
    margin-top: 15px;
    margin-bottom: 10px;
}

a {
    padding: 10px;
    font-size: 20px;
    color: #0f0;
    text-decoration: none;
}

/* Custom file input styling */
input[type="file"]::file-selector-button {
    background: #000;
    color: #0f0;
    border: 1px solid #0f0;
    margin-right: 10px;
    font-family: 'VT323', monospace;
    cursor: pointer;
}

input[type="file"]::file-selector-button:hover {
    background: #0f0;
    color: #000;
}