* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Arial, sans-serif;
}

button {
  font: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    #000;
  background-size: 42px 42px;
}

.card {
  width: 100%;
  max-width: 430px;
  text-align: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 58px;
  padding: 11px 18px;
  border: 1px solid #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: #000;
}

h1 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.03em;
}

.muted {
  margin: 0 0 28px;
  color: #aaa;
  font-size: 15px;
}

.text {
  margin: 0 auto 26px;
  max-width: 330px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.btn {
  width: 100%;
  min-height: 72px;
  border: 1px solid #fff;
  border-radius: 18px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  transition: transform .12s ease, opacity .12s ease, background .12s ease, color .12s ease;
}

.btn:active {
  transform: scale(.985);
}

.primary {
  margin-bottom: 14px;
  background: #fff;
  color: #000;
}

.secondary {
  margin-bottom: 30px;
  background: #111;
  color: #fff;
}

.box {
  width: 100%;
  padding: 18px;
  border: 1px solid #333;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}

.label {
  margin-bottom: 8px;
  color: #aaa;
  font-size: 13px;
  font-weight: 700;
}

.link {
  min-height: 20px;
  margin-bottom: 14px;
  word-break: break-all;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.35;
}

.copy {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #fff;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.status {
  min-height: 20px;
  margin: 16px 0 0;
  color: #aaa;
  font-size: 13px;
}

@media (max-width: 480px) {
  .page {
    align-items: flex-start;
    padding-top: 96px;
  }

  .logo {
    margin-bottom: 54px;
  }

  h1 {
    font-size: 25px;
  }

  .text {
    font-size: 17px;
  }
}
