.form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 30px;
}
form {
  background-color: white;
  display: flex;
  flex-direction: column;
  width: 50em;
  gap: 20px;
  padding: 30px;
  border-radius: 10px;
  font-size: large;
}
input {
    height: 30px;
}
input[type="submit"] {
  background-color: #04aa6d;
  width: 10vw;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
