/* style.css */
body {
  font-family: Arial;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
  width: 300px;
  text-align: center;
}
input, button {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
}