:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #18212f;
  background: #f5f7fb;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(100%, 460px);
  padding: 36px 28px;
  border: 1px solid #dce2ea;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(24, 33, 47, 0.09);
  text-align: center;
}

.mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border: 3px solid #159447;
  border-radius: 50%;
  color: #159447;
  font-size: 34px;
  font-weight: 800;
}

h1 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
}

p {
  margin: 0 0 12px;
  line-height: 1.55;
}

.secondary,
.help {
  color: #5d6878;
}

.button {
  display: inline-block;
  margin: 18px 0;
  padding: 13px 22px;
  border-radius: 999px;
  background: #18212f;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.button:focus-visible {
  outline: 3px solid #6ea8ff;
  outline-offset: 3px;
}

.help {
  font-size: 14px;
}
