/* Opmaak geïnspireerd op de huisstijl van De Roma */
body {
    font-family: 'Georgia', serif;
    background-color: #fbe9e7;
    color: #5d4037;
    padding: 2em;
  }
  
  h1 {
    color: #c62828;
    text-align: center;
  }
  
  form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff3e0;
    padding: 2em;
    border: 2px solid #c62828;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  fieldset {
    border: none;
    margin-bottom: 1.5em;
  }
  
  legend {
    font-weight: bold;
    color: #c62828;
    margin-bottom: 1em;
  }
  
  label {
    display: block;
    margin-top: 1em;
    font-weight: bold;
  }
  
  .required::after {
    content: " *";
    color: #c62828;
  }
  
  input, select {
    width: 100%;
    padding: 0.5em;
    margin-top: 0.3em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .radio-group {
    display: flex;
    gap: 1em;
    margin-top: 0.5em;
  }
  
  .hint {
    font-size: 0.85em;
    color: #8d6e63;
  }
  
  button {
    display: block;
    margin-top: 2em;
    background-color: #c62828;
    color: white;
    border: none;
    padding: 0.8em 1.5em;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #b71c1c;
  }
  footer {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid #ccc;
    font-size: 0.9em;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  