#body {
  position: relative;
background-image: url(../images/unterkunft/Zinnwald_Aussicht.webp);
min-height: 100vh;
min-width: 100vw;
background-size: cover;
}

#formular {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  overflow: auto;
  width: 50vw;
}

.row {
  margin-top: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
}

#kontaktformular {
  margin: 0 auto;
}

.row .label {
  text-align: center;
  width: 100%;
}

#checkbox-text {
font-size: 1rem;
}

input {
  margin-bottom: 20px;
}

input[type="submit"] {
  margin-top: 10px;
  background-color: #ff4800d4;
        color: #fff;
        padding: 10px 15px; /* Beispielhafte Innenabstände */
  border: none; /* Beispielhafte Entfernung der Grenze */
  cursor: pointer; /* Änderung des Mauszeigers beim Überfahren */
}

#danke {
  position: absolute;
  font-size: 2rem;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;

}

#footer {
  position: absolute;
  bottom: 0;
}

@media only screen and (max-width: 1400px) {

  #body #formular {
    width: 70%;
    max-height: 80%;
    overflow: auto;
  }
}