:root {
  color-scheme: dark;
  font-family: system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  align-items: center;
  background: #111;
  color: #f4f1e8;
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
}

main {
  width: min(24rem, calc(100% - 2rem));
}

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

label {
  display: grid;
  gap: 0.35rem;
}

button,
input {
  font: inherit;
  padding: 0.65rem 0.75rem;
}

button {
  cursor: pointer;
}

.message {
  color: #ffacac;
  min-height: 1.25rem;
}
