body {
  font-family: system-ui, sans-serif;
  background: #f5f5f5;
  color: #222;
  margin: 0;
}

.container {
  max-width: 720px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

h1 {
  margin-top: 0;
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  font-weight: 600;
}

input,
select,
button {
  font: inherit;
  padding: 0.7rem;
}

button {
  background: #0b5ed7;
  color: white;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #094db1;
}

.button-link {
  display: inline-block;
  font: inherit;
  padding: 0.7rem;
  background: #0b5ed7;
  color: white;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.button-link:hover {
  background: #094db1;
}
