* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-image: url("/img/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #09608d;
  position: relative;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: -1;
}

.info-card {
  position: relative;
  z-index: 2;
}

.info-card__title {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 20px;
}

.info-card__subtitle {
  margin-bottom: 40px;
  font-size: 1.5rem;
  color: #db136c;
}

.action-area {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}

.cta-button {
  display: block;
  background: linear-gradient(to right, #ff3992 0%, #741c02 100%);
  padding: 10px;
  border-radius: 5px;
  position: relative;
  border-radius: 16px;
  max-width: 500px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-inline: auto;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  transform: scale(1);
  transition: transform 0.4s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

.legal-footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  color: #000;
  z-index: 99;
  white-space: nowrap;
  padding: 10px;
}

.legal-footer__link {
  color: #000;
  font-size: 24px;
  text-decoration: none;
}

.legal-footer__link:hover {
  text-decoration: underline;
}

.flare {
  position: absolute;
  top: 0;
  height: 100%;
  width: 25px;
  transform: skewX(-45deg);
  animation: flareAnimation;
  left: 80%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  animation: flareAnimation 3s infinite linear;
}

@keyframes flareAnimation {
  0% {
    left: 10%;
  }
  100% {
    left: 80%;
  }
}

@media (max-width: 600px) {
  body {
    justify-content: flex-start;
    padding-top: 70px;
  }

  .legal-footer {
    bottom: 2vh;
  }
}
