.App {
  /* using flexbox to center vertically and stack the input fields */
  display: flex; 
  justify-content: center;
  align-items: center;
  height: 40vh; 
}
input {
  display: block;
  margin-bottom: 10px;
  padding: 8px;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}
button {
  padding: 10px 20px;
  background-color: #007bff;  /* Button background color */
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  font-size: 16px;
}

button:hover {
  background-color: #0056b3;  /* Darker background color on hover */
}
