.input {
    width: 100%;
    padding: 10px 12px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 4px;
    color: #e6e6e6;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus {
    outline: none;
    border-color: #f05a28;
    box-shadow: 0 0 0 2px rgba(240, 90, 40, 0.2);
}

.input:disabled {
    background: #0a0a0a;
    color: #555;
    cursor: not-allowed;
}

.input::placeholder {
    color: #555;
}

.input-error {
    border-color: #8b0000;
    box-shadow: 0 0 0 2px rgba(139, 0, 0, 0.2);
}

.input-success {
    border-color: #006400;
    box-shadow: 0 0 0 2px rgba(0, 100, 0, 0.2);
}

.textarea {
    width: 100%;
    min-height: 100px;
    padding: 10px 12px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 4px;
    color: #e6e6e6;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.textarea:focus {
    outline: none;
    border-color: #f05a28;
    box-shadow: 0 0 0 2px rgba(240, 90, 40, 0.2);
}

.select {
    width: 100%;
    padding: 10px 12px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 4px;
    color: #e6e6e6;
    cursor: pointer;
}

.select:focus {
    outline: none;
    border-color: #f05a28;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox {
    width: 18px;
    height: 18px;
    accent-color: #f05a28;
    cursor: pointer;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
