body {
    font-family: 'Segoe UI', sans-serif;
    /* linear-gradient(#b3e5fc, #e1bee7) */
    background: url('https://www.sideshow.com/wp/wp-content/uploads/2023/01/Umbrasyl_and_Vorugal_from_TLOVM_S2.jpg') no-repeat fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

form {
    background: rgba(255, 255, 255, 0.25);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    text-align: center;
    color: #542b1a;
}

label {
    display: block;
    margin-top: 1rem;
    font-weight: bolder;
}

input, select, textarea {
    width: 100%;
    padding: 0.25rem;
    margin-top: 0.25rem;
    border: 2px dashed rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
}

button {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem;
    background: #acb516; /* #708550 */
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.4s ease-in-out;
}

button:hover {
    background: #542b1a;
}

.gebruiksvoorwaarden {
    color: #542b1a;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.3s ease;
    font-weight: bold;
}

.gebruiksvoorwaarden:hover {
    color: #acb516;
    font-weight: normal;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    display: flex;
    align-items: center;
    margin: 12px 0;
    font-size: 1.1rem;
}

.checkbox-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

input[type="checkbox"] {
    width: 25px;
    height: 25px;
    position: absolute;
    align-items: center;
    justify-content: center;
    align-content: center;
    box-shadow: 0 0 25px gold;
}
input[type="checkbox"]:checked {
    background: #2d20dd;
    color: #b83838;
    font-weight: lighter;
}