main {
  justify-content: center;
}
form#account_form {
  background: #ffd297;
  padding: 32px;
  border-radius: 8px;
  box-shadow: -4px -4px 16px #0007;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 300px;
  border: 2px solid #DDB07C;
}
label {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  gap: 4px;
  color: #56311b;
}
input {
  padding: 8px;
  border-radius: 8px;
  font-size: 1rem;
  background: #fcc585;
  border: none;
  color: #56311b;
}
input:focus {
  outline: 1px solid #bb8d60;
}
button[type="submit"] {
  padding: 10px;
  background: #56311b;
  border: none;
  border-radius: 8px;
  color: #fcc585;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 0 #0009;
  transform: translate(0, 0);
  transition: all 0.2s ease-in-out;
}
button[type="submit"]:hover {
  box-shadow: -4px -4px 8px #0009;
  transform: translate(4px, 4px);
  background: #fcc585;
  color: #56311b;
}
#error {
  background: #d33;
  color: #56311b;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: all 0.2s ease-in-out;
  max-height: 200px;
  overflow: hidden;
}
#error.hidden {
  max-height: 0px;
  padding: 0 16px;
  margin-bottom: 0;
}
