* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #202124;
  background: #f5faf7;
}

main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 20px;
}

.card {
  width: min(100%, 440px);
  position: relative;
  overflow: hidden;
  padding: 34px 28px 30px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.accent {
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: #06c755;
}

p {
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
}

.action {
  margin-top: 24px;
}

a {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: #06c755;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:active {
  transform: translateY(1px);
  opacity: 0.92;
}
