#modal {
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 255, 0.8);
}

#modalInhalt {
  align-items: stretch;
  border: 1px black solid;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  animation: modal 700ms ease 0s 1 normal forwards;
  background-color: rgb(255, 255, 255, 1);
}

#modalInhalt .zeile {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#registrierenModal {
  display: flex;
  flex-direction: column;
}

#registrierenModal .zeile {
  margin: 15px;
}

#registrierenModal .buttons {
  display: flex;
  justify-content: space-between;
}

.schrift08 {
  font-size: 0.8rem;
}

#registrierenPasswortAnzeigen {
  height: min-content;
  background-color: lightgoldenrodyellow;
  border: 1px solid black;
  border-radius: 5px;
  /* position: absolute; */
  top: 85%;
  left: 70%;
}

#mitteilung * {
  display: inline-block;
  padding: 5px 10px;
  margin: 10px 0;
  font-weight: bold;
}

@keyframes modal {
  0% {
    margin-top: -50%;
    opacity: 0.5;
  }

  100% {
    margin-top: 0;
    opacity: 1;
  }
}