#form-container {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
}

form {
    width: 50%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

input,
button {
  font-size: 1rem;
  padding: 0.4rem;
  margin: 0.3rem 0;
  border-radius: 5px;
  border: none;
}

button {
  background-color: #1db954;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #1ed760;
}