h1 { font-family: Arial, Helvetica, sans-serif; }
body {
  font-family: sans-serif;
  background-color: #f5f5f5;
  padding: 2rem;
  display: flex;
  justify-content: center;
}

main {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: bold;
}

input {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}

button {
  padding: 0.75rem;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #1e40af;
}

p {
  font-size: 1.2rem;
  text-align: center;
}

a {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #2563eb;
  text-decoration: none;
}
