.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}
.container {
  max-width: 600px;
  text-align: center;
}
form {
  max-width: 300px;
  margin: 0 auto;
}
label {
  display: block;
  text-align: left;
}
input, button {
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
}
button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}
button:hover {
  background-color: #0056b3;
}

