main {
  padding: 2rem;
  background: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 0.75rem;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #005fa3;
}
.result {
  margin-top: 2rem;
  padding: 1rem;
  background: #eaf4fc;
  border-radius: 5px;
  font-size: 1.2rem;
}
