#regis-btn .regis-btn-animation a:not(:has(img)) {
  background: linear-gradient(
    60deg,
    rgba(237, 108, 48, 1) 0%,
    rgba(218, 33, 40, 1) 100%
  );
  font-size: 1.15rem;
  border: 2px solid #ffffffff;
  -webkit-animation: regis-btn-animation 0.6s ease-in-out infinite both;
  animation: regis-btn-animation 0.6s ease-in-out infinite both;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 50px;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
}


.regis-btn-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}


#regis-btn .regis-btn-animation a:not(:has(img)):hover {
  animation: step-end;
}


#regis-btn .regis-btn-animation a:not(:has(img)):hover {
  background: var(--topic-color);
  border-color: var(--link-topic-color);
}


@-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);
  }
}


@media screen and (min-width: 768px) {
  .regis-btn-animation {
    flex-direction: row;
  }
}






