#forgot-password-accent {
  position: fixed;
  top: -15vw;
  right: -20vw;
  width: 60vw;
}

form#forgot-password {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body main {
  margin: auto;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  form#forgot-password {
    max-width: unset;
    margin-top: 30vw;
  }

  body main {
    padding: 2rem;
    justify-content: flex-start;
  }
}