*,
*::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: #f5f4df;
  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(24, 23, 23, 0.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  color: #181717;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.heading {
  margin: 0;
  color: #181717;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
}

.subtext {
  margin: 0;
  color: #181717;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.cta {
  border-radius: 9999px;
  background-color: #de3022;
  padding: 20px 32px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.cta:hover {
  background-color: #e9463c;
}

@media (min-width: 1024px) {
  .heading {
    font-size: 48px;
  }

  .subtext {
    font-size: 20px;
  }
}
