body {
  font-family: system-ui, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
}
img {
  max-width: 80%;
  margin-bottom: 1rem;
}
input, button {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.5rem;
}
#status {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: red;
}