*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
    sans-serif;
}

.wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e4f9ef;
  padding: 24px;
}

.card {
  display: flex;
  width: 100%;
  max-width: 480px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 24px;
  background-color: #ffffff;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(39, 39, 39, 0.12);
}

.logo {
  height: 16px;
  width: auto;
}

.heading {
  margin: 0;
  color: #272727;
  font-size: 33px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.08px;
}

.subtext {
  margin: 0;
  color: #272727;
  font-size: 19px;
  font-weight: 400;
  line-height: 24px;
}

.cta {
  border-radius: 9999px;
  background-color: #34dc91;
  padding: 16px 32px;
  color: #272727;
  font-size: 19px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

.cta:hover {
  background-color: #29c383;
}

@media (min-width: 1024px) {
  .heading {
    font-size: 44px;
    line-height: 58px;
    letter-spacing: -0.27px;
  }

  .subtext {
    font-size: 23px;
    line-height: 28px;
  }

  .cta {
    font-size: 23px;
    line-height: 28px;
  }
}
