html,
body {
  background-color: #000000;
  font-family: "PT Sans";
}

body {
  max-width: 414px;
  margin: 0 auto;
}

.banner-logo {
  position: absolute;
  max-width: 50%;
  top: 35px;
  left: 26%;
}

.banner-title-1 {
  position: absolute;
  font-size: 27px;
  color: white;
  top: 16%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.banner-title-2 {
  position: absolute;
  top: 22%;
  left: 50%;
  width: 100% ;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 60px;
  font-weight: bold;
  color: white;
}

.banner-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 28%;
  color: #173080;
  font-weight: bold;
  border-radius: 25px;
  width: 49%;
  padding: 4px;
  border: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  animation: glowing 1500ms infinite;
  font-size: 22px;
}

.banner-btn:hover {
  color: #173080;
}

.overlay-textarea-step1 {
  position: absolute;
  margin-top: -516%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.newsletter-subscribe{
  margin-top: -445%;
  position: absolute;
}

.overlay-textarea-step2 {
  position: absolute;
  margin-top: -270%;
  /* top: 46%; */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.overlay-textarea-step3 {
  position: absolute;
  margin-top: -150%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding-bottom: 50px;
}
.overlay-step3 {
  position: absolute;
  top: 73%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.txt-step-num {
  font-size: 50px;
  font-weight: bold;
  text-shadow: 1px 1px 5px #fff, 1px 1px 5px #ccc;
}

.bg-img {
  margin-top: -164%;
}

.btn-dark {
  background-color: #ffd140;
  /* color: white; */
}

.btn-dark:hover {
  background-color: #c7a432;
}

.btn-step-1 {
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0px 4px 36px #ccc;
  border-radius: 39px;
  color: #001398;
  --bs-btn-border-color: transparent;
}

.bg-tnc {
  position: relative;
  background-color: #FEE504;
  margin-top: -95%;
  max-width: 100%;
  padding-left: 15%;
  padding-right: 15%;
}

.tnc-text{
  color: #0A6AD5;
}

.tnc-title {
  font-size: 20px;
  font-weight: bold;
}

.tnc-header {
  font-size: 14px;
  font-weight: bold;
}

.tnc-content {
  font-size: 12px;
  text-align: justify;
  /* font-weight: bold; */
}

.modal-header {
  border-bottom: none;
}

.modal-content {
  background-color: transparent;
  border: transparent;
}

@keyframes glowing {
  0% {
    background-color: #ffd140;
    box-shadow: 0 0 3px #b3922a;
  }

  50% {
    background-color: #d1aa2e;
    box-shadow: 0 0 30px #d1aa2e;
  }

  100% {
    background-color: #ffd140;
    box-shadow: 0 0 3px #b3922a;
  }
}

@keyframes scale {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
  }

  50% {
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    transform: translate(-50%, -50%) scale(0.7);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px 5px #ccc;
  }

  50% {
    box-shadow: 0 0 20px 10px #ccc;
  }

  100% {
    box-shadow: 0 0 10px 5px #ccc;
  }
}

.glowing-image {
  animation: glow 2s infinite;
  border-radius: 24px;
}
