.form-buttons {
  justify-content: center;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

.login-result-message {
  width: 30rem;
  margin: 2rem auto;
  background-color: rgb(255, 255, 255);
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
}

.login-success {
  color: #008000;
  background-color: #ccffcc;
}

.login-failed {
  color: #b30000;
  background-color: #ffb3b3;
}

#registerParagraph {
  text-align: center;
}

@media (max-width: 48.5rem) {
  /*768px*/

  #registration-form {
    width: 25rem;
  }

  .login-result-message {
    width: 27.5rem;
  }
}

@media (max-width: 30rem) {
  /*480px*/

  main h1 {
    margin-top: 2rem;
  }

  #registration-form {
    width: 80%;
  }

  .login-result-message {
    width: 80%;
  }
}
