.dot-flashing {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #019FE3CC;
  color: #019FE3CC;
  animation: dot-flashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}
.dot-flashing::before, .dot-flashing::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}
.dot-flashing::before {
  left: -45px;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #019FE3CC;
  color: #019FE3CC;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 0s;
}
.dot-flashing::after {
  left: 45px;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #019FE3CC;
  color: #019FE3CC;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 1s;
}
@keyframes dot-flashing {
  0% {
    background-color: #019FE3CC;
  }
  50%, 100% {
    background-color: rgba(1, 159, 227, 0.2);
  }
}
  .stage {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 32px 0;
    margin: 0 -5%;
    overflow: hidden;
  }
#thankYouForm {
    height: auto;
}