body {
  margin: 0;
  padding: 0;
  font-family: "Comic Sans MS", Arial, sans-serif;
  background: none;
}

.formular-box {
    width: 550px;
    background: var(--bg);
    padding: 8px;

    margin: 20px auto;
}


h1 {
  margin: 0 0 5px 0;
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
  color: #003366;
}

.hinweis {
  margin: 0 0 4px 0;
  text-align: center;
  font-weight: bold;
  background: #ffff66;
  font-size: 14px;
}

.zeile {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: start;
  margin-bottom: 3px;
}

label {
  font-size: 19px;
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  font-size: 16px;
  border: 1px solid #777;
  background: white;
}

input {
  height: 30px;
}

.zeile textarea {
  height: 52px;
}

.zeile.klein input {
  width: 85px;
}

.meldung-label {
  display: block;
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 19px;
}

.meldung {
  width: 405px;
  height: 120px;
  display: block;
  margin-bottom: 14px;
}

button {
  font-family: "Comic Sans MS", Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  color: #7a0000;
  background: #ffdddd;
  border: 1px solid #555;
  padding: 6px 10px;
  cursor: pointer;
}

button:hover {
  background: #ffbbbb;
}