* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f4;
  color: #151515;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

.card {
  width: 100%;
  max-width: 680px;
  background: #ffffff;
  border: 1px solid #e5e0d8;
  border-radius: 28px;
  padding: 46px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.brand {
  font-size: 18px;
  letter-spacing: 0.03em;
  font-weight: 600;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #77736b;
}

h1 {
  margin: 0;
  font-size: 44px;
  letter-spacing: -0.04em;
}

.subtitle {
  margin: 10px 0 30px;
  font-size: 18px;
  color: #55514b;
}

.text {
  max-width: 520px;
  margin: 0 auto 18px;
  font-size: 17px;
  line-height: 1.7;
  color: #33312e;
}

.button {
  display: inline-block;
  margin: 20px 0 24px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #151515;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.small {
  margin: 0;
  font-size: 14px;
  color: #77736b;
}

@media (max-width: 520px) {
  .card {
    padding: 34px 22px;
    border-radius: 22px;
  }

  h1 {
    font-size: 34px;
  }

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