.thank-you-wrapper {
  min-height: 80vh;
  padding: 150px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thank-you-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 100px 50px;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  gap: 20px;
}
.thank-you-card h1 {
  text-align: center;
  font-weight: 700;
  font-size: 1.875rem;
}
.thank-you-card p {
  font-weight: 500;
  font-size: 1.125rem;
}

.thank-you-card a {
  font-weight: 600;
  text-decoration: none;
  padding: 10px;
  background-color: #38b3a0;
  color: #fff;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .thank-you-card {
    padding: 40px 20px;
    width: 90%;
  }
  .thank-you-card h1 {
    font-size: 1.5rem;
  }
  .thank-you-card p {
    font-size: 1rem;
  }
}