:root {
  color-scheme: dark;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #090a0b;
  color: #e8ebed;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
}
main {
  width: min(100%, 400px);
  padding: 36px;
  border: 1px solid #272b2e;
  border-radius: 18px;
  background: #101214;
}
.brand {
  font-weight: 650;
  font-size: 18px;
}
.brand span {
  font-size: 12px;
  color: #a4bcc9;
  margin-left: 8px;
}
h1 {
  font-size: 28px;
  letter-spacing: -0.7px;
  margin: 36px 0 10px;
}
p {
  font-size: 14px;
  line-height: 1.6;
  color: #a8afb5;
}
a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  border: 1px solid #4a5962;
  background: #1a2227;
  color: #e8f1f6;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
a:hover {
  background: #242e35;
}
a:focus-visible {
  outline: 2px solid #9abdd2;
  outline-offset: 4px;
}
.note {
  font-size: 12px;
  color: #848e96;
  margin: 24px 0 0;
}
