:root {
  font-family: system-ui, sans-serif;
  color: #0f172a;
  background: #f0f9ff;
}
* {
  box-sizing: border-box;
}
body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}
main {
  max-width: 420px;
  width: 100%;
  padding: 36px 28px;
  border-radius: 28px;
  background: white;
  box-shadow: 0 20px 60px #0f172a12;
  text-align: center;
}
.brand {
  display: block;
  width: 179px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
h1 {
  font-size: 30px;
  line-height: 1.2;
  margin: 20px 0 14px;
}
p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}
a {
  color: #0369a1;
  text-underline-offset: 4px;
}
a:focus-visible {
  outline: 2px solid #0284c7;
  outline-offset: 5px;
}
.primary {
  display: block;
  padding: 15px;
  margin: 26px 0 20px;
  border-radius: 30px;
  background: #0f172a;
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.small {
  font-size: 13px;
}
.stores {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 14px;
}
