#forgot {
  display: grid;
  place-items: center;
  padding: 2em 1em;
  gap: 1em;
}
#forgot form {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 1em;
  background-color: white;
  border-radius: 0.5em;
  transition: filter 0.2s;
}
#forgot form .field {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
#forgot form .field label {
  font-weight: bold;
}
#forgot form .field input {
  font-family: inherit;
  font-size: inherit;
  padding: 0.2em 0.5em;
  border: solid black 1px;
  border-radius: 4px;
}
#forgot form button {
  font-family: inherit;
  font-size: inherit;
  padding: 0.5em 2em;
  border: solid black 1px;
  border-radius: 4px;
  background-color: #bbefb3;
  align-self: center;
  cursor: pointer;
}
#forgot .hidden {
  display: none;
}

#loader.show + form {
  filter: blur(0.5em);
}

/*# sourceMappingURL=forgot.css.map */
