form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
}

input:not([type="radio"], [type="submit"]), select {
    outline: none;
    background-color: #0a0a0f;
    border: 2px solid #492F7A;
    color: white;
    font-family: 'Menlo', 'Courier New', Courier, monospace;
    padding: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    box-sizing: border-box;
}

label {
    text-transform: uppercase;
    color: #492F7A;
}

.submit_btn {
    background-color: #492F7A;
    color: black;
    font-weight: bold;
    font-family: 'Menlo', 'Courier New', Courier, monospace;
    border: 2px solid #492F7A;
    padding: 5px;
    width: 120px;
    min-width:fit-content;
    text-transform: uppercase;
}

.submit_btn:hover {
    background-color: black;
    color: #492F7A;
    cursor: pointer;
}