body {
  background-color: #f2f2f2;
  font-family: Arial, sans-serif;
}

h1 {
  color: #333;
  font-size: 3rem;
  text-align: center;
  margin-top: 3rem;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
}

input[type="text"] {
  width: 100%;
  padding: 1rem;
  font-size: 1.5rem;
  border-radius: 0.5rem;
  border: none;
  margin-bottom: 1rem;
}

button[type="submit"] {
  padding: 1rem 2rem;
  font-size: 1.5rem;
  border-radius: 0.5rem;
  border: none;
  background-color: #0077ff;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

button[type="submit"]:hover {
  background-color: #0048c9;
}
