:root {
  color-scheme: light;
}
body {
  margin: 0;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  background: linear-gradient(135deg, #f7f2e8, #e8f2f7);
  color: #1b1b1b;
  display: grid;
  place-items: center;
  min-height: 100vh;
}
.card {
  background: #ffffffcc;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 32px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 520px;
}
h1 {
  margin: 0 0 12px;
  font-size: 28px;
}
form {
  display: grid;
  gap: 10px;
}
label {
  font-weight: 600;
}
input,
select,
button {
  font: inherit;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #cfcfcf;
  background: #fff;
}
button {
  cursor: pointer;
  background: #0f6b6b;
  color: #fff;
  border: none;
}
