body {
    background-color: #ffffc5;
    font-family: Arial, sans-serif;
    color: #000000;
    padding: 20px;
}

h1{
    text-align: center;
    margin-bottom: 30px;
}

form{
    background-color: #ffffc5;
    border: none
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 5px;
}

fieldset{
    border: none;
    margin-bottom: 20px;
}

legend{
    color: #000000;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

label{
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="date"],
select:focus,
textarea:focus {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 2px solid #000;      /* zwarte rand */
    border-radius: 0;            /* géén afgeronde hoeken */
    box-sizing: border-box;
    font-size: 16px;
    background-color: #ffffc5;
}



input[type="radio"] {
    margin-right: 5px;
}

input[type="submit"] {
    background-color: #000;
    color: white;
    border: none;
    padding: 14px 0;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input[type="submit"]:hover {
    background-color: #333;
}