* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'VT323', monospace;
}

body {
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    background-color: #000;
    border: 2px solid #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.terminal-header {
    background-color: #fff;
    color: #000;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #fff;
}

.terminal-title {
    font-size: 1.4em;
    font-weight: bold;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #000;
}

.close { background-color: #ff5f56; }
.minimize { background-color: #ffbd2e; }
.maximize { background-color: #27c93f; }

.terminal-body {
    padding: 25px;
}

.retro-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    color: #fff;
    font-size: 1.3em;
}

.retro-input {
    background-color: #000;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 15px;
    font-size: 1.2em;
    font-family: 'VT323', monospace;
    width: 100%;
    text-transform: uppercase;
    min-height: 45px;
}

.retro-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.retro-input:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.retro-textarea {
    min-height: 120px;
    resize: vertical;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-text {
    position: relative;
    padding-left: 30px;
    font-size: 1.2em;
}

.radio-text::before {
    content: '[ ]';
    position: absolute;
    left: 0;
}

.radio-label input[type="radio"]:checked + .radio-text::before {
    content: '[X]';
}

.retro-button {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 15px 30px;
    font-size: 1.3em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'VT323', monospace;
    margin-top: 10px;
}

.retro-button:hover {
    background-color: #fff;
    color: #000;
}

/* File input styling */
input[type="file"] {
    border: none;
    padding: 0;
    cursor: pointer;
    width: auto;
    min-height: auto;
}

input[type="file"]::-webkit-file-upload-button {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 25px;
    cursor: pointer;
    font-family: 'VT323', monospace;
    font-size: .9em;
    text-transform: uppercase;
}

input[type="file"]::-webkit-file-upload-button:hover {
    background-color: #fff;
    color: #000;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        margin: 10px;
    }
    
    .terminal-body {
        padding: 20px;
    }
    
    .retro-input {
        font-size: 1.1em;
        padding: 10px 12px;
    }

    label {
        font-size: 1.2em;
    }

    .retro-button {
        font-size: 1.2em;
        padding: 12px 25px;
    }
} 