@font-face {
    font-family: 'Phonk';
    src: url('fonts/Phonk - Free DEMO/Phonk Regular DEMO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #f5e9de; 
    margin: 0;
    padding: 0;
    font-family: 'Phonk', Arial, sans-serif;
}

h1 {
    background-color: #d2b48c; 
    color: white;
    text-align: left;
    padding: 20px;
    margin: 0;
    font-size: 25px;
    font-family:Arial, Helvetica, sans-serif;
    font-weight: lighter;
}

form {
    background-color: rgb(229, 26, 76);
    max-width: 600px;
    margin: 50px auto; /* Extra marge boven en onder het formulier */
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

fieldset {
    border: none;
    margin-top: 20px; /* Extra ruimte boven de fieldset */
    margin-bottom: 20px;
    font-family: 'Phonk', Arial, sans-serif;
}

legend {
    font-size: 30px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
    font-family: 'Phonk', Arial, sans-serif;
}

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

li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 3px dotted black; 

    padding-bottom: 10px; 
}

li:last-child {
    border-bottom: none; 
}

label {
    font-size: 20px; 
    font-weight: normal;
    color: white;
    width: 250px; 
    margin-right: 10px;
}

label[for="concert"] {
    display: block;
    margin-bottom: 5px;
}

.radio-group label {
    font-size: 14px; 
    width: auto; 
    margin-right: 5px;
}

input, select {
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
   
}

#concert {
    display: block;
    width: 100%;
    margin-top: 5px;
}

#concert, input {
    flex: 1;
    margin-right: 10px;
}

select {
    flex: 1;
}

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

button {
    background-color: #d2b48c; 
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #b8946c; 
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #d2b48c; 
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}
