html,
body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
  background-image: url('../../images/mario-klassen-70YxSTWa2Zw-unsplash.jpg'); 
  background-repeat: no-repeat; 
  background-attachment: fixed;  
  background-size: 100% 100%;
  background-color: rgba(255, 255, 255, 0.5); 
  -webkit-backdrop-filter: blur(6px); 
  backdrop-filter: blur(6px);
}

main {
  background: #ffffffc7;
  border: 2px solid #626262;
  border-radius: 10px;
  padding: 30px 30px;
  box-shadow: rgb(41, 64, 16) 3px 5px 20px;
}

.form-register{
  max-width: 450px;
  padding: 15px;
}

.form-register.form-floating:focus-within {
  z-index: 2;
}

.form-register input[type="email"] {
  margin-bottom: -1px;
  border-radius: 0;
}

.password {
  margin-bottom: -1px;
  border-radius: 0;
}

.password-repeat {
  margin-bottom: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: .375rem;
  border-bottom-right-radius: .375rem;
}

.form-register input[type="text"] {
  margin-bottom: -1px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.required:before {
  content: "*";
  color: var(--bs-red);
}

#modalHinweiseEmail span:hover {
  cursor: pointer;
  color: black !important;
}