section form {
  display: flex;
  height: 80%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form label {
  margin-top: 2rem;
  font-size: x-large;
}

form input {
  width: 20rem;
  height: 2rem;
}

form button {
  margin-top: 3rem;
  width: 25rem;
  height: 4rem;
  transition: 0.1s;
}

form button:hover {
  background-color: rgb(36, 64, 102);
  color: white;
}