main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
form#account_form {
  background: #4bbfbf;
  padding: 32px;
  border-radius: 8px;
  box-shadow: -4px -4px 16px #0007;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 300px;
  border: 2px solid #1d6b83;
}
label {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  gap: 4px;
}
input {
  padding: 8px;
  border-radius: 8px;
  font-size: 1rem;
  background: #0003;
  border: none;
}
input:focus {
  outline: 1px solid #1d6b83;
}
button {
  padding: 10px;
  background: #1d6b83;
  border: none;
  border-radius: 8px;
  color: #8dd2df;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 0 #0009;
  transform: translate(0, 0);
  transition: all 0.2s ease-in-out;
}
button:hover {
  box-shadow: -4px -4px 8px #0009;
  transform: translate(4px, 4px);
  background: #8dd2df;
  color: #1d6b83;
}
#error {
  background: #d33;
  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;
}
