.results {
  padding-top: 2rem;
}

.post-password-form {
  padding: 60px 0;
  min-height: 30vh;
}

.post-password-form label {
  font-weight: 700;
  line-height: 3rem;
  font-size: 1rem;
  display: inline-block;
  padding-right: 4px;
}

.post-password-form input[type="password"] {
  border-radius: 5px;
  box-shadow: none;
  padding: 8px 22px;
  font-size: 1rem;
  color: #470b30;
  border: 1px solid #470b30;
  margin-left: 10px;
}

.post-password-form input[type="password"]:focus {
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.post-password-form input[type="submit"] {
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  line-height: 1;
  background: linear-gradient(90deg,#470b30,#943f78 50%,#943f78 0,#470b30);
  background-size: 200%;
  border-radius: 5px;
  box-shadow: none;
  color: #FFF;
  padding: 13px 22px;
  position: relative;
  margin: 0;
  z-index: 2;
  border: 0;
  transition: all 300ms ease-in-out;
}

.post-password-form input[type="submit"]:hover {
  background-position: 100%;
}

#login-form {
  padding: 60px 0;
  margin: 0 auto;
  max-width: 600px;
}

#login-form .form-group {
  margin: 0 0 2rem;
}

#login-form input[type="password"],
#login-form input[type="text"] {
  border-radius: 5px;
  box-shadow: none;
  padding: 8px 22px;
  font-size: 1rem;
  color: #470b30;
  border: 1px solid #470b30;
}

#login-form input[type="password"]:focus,
#login-form input[type="text"]:focus {
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

#login-form button[type="submit"] {
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  line-height: 1;
  background: linear-gradient(90deg,#470b30,#943f78 50%,#943f78 0,#470b30);
  background-size: 200%;
  border-radius: 5px;
  box-shadow: none;
  color: #FFF;
  padding: 13px 22px;
  position: relative;
  margin: 0;
  z-index: 2;
  border: 0;
  transition: all 300ms ease-in-out;
}

#login-form button[type="submit"]:hover {
  background-position: 100%;
}

#fdatenschutzButton {
  border: 0;
  background: none;
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: underline;
  float: right;
  margin: 0 0 1rem;
  cursor: pointer;
}

#fdatenschutzButton:hover {
  color: #FFF;
}

#fdatenschutz {
  margin: 0 0 1rem;
  position: relative;
}

#fdatenschutz::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 33%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#fdatenschutz[open]::after {
  opacity: 0;
}
