/* The whole page */
body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  padding: 20px;
}

/* The white box around the form */
form {
  background-color: white;
  max-width: 400px;
  padding: 20px;
  border-radius: 8px;
}

/* Each label sits on its own line */
label {
  display: block;
  margin-top: 15px;
}

/* The text boxes */
input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box; /* keeps the box from getting wider than the form */
}

/* The Submit button */
button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* The button gets darker when the mouse is over it */
button:hover {
  background-color: #0056b3;
}
