#regis-btn .regis-btn-animation a {
  background: linear-gradient(
    60deg,
    rgba(237, 108, 48, 1) 0%,
    rgba(218, 33, 40, 1) 100%
  );
  font-size: 1.15rem;
  border: 2px solid #ffffffff;
}


.regis-btn-animation {
  display: flex;
  -webkit-animation: regis-btn-animation 0.6s ease-in-out infinite both;
  animation: regis-btn-animation 0.6s ease-in-out infinite both;
}


.regis-btn-animation:hover {
  animation: step-end;
}


#regis-btn .regis-btn-animation:hover a {
  background: #133c8b;
  border-color: #133c8b;
}


@-webkit-keyframes regis-btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes regis-btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}




