.glow-box {
  position: relative;
  width: 15.375rem;
  height: 3.125rem;
  border-radius: 6.25rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
}

.glow-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50rem;
  height: 50rem;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    #00E1FF 10%,
    transparent 40%
  );
  animation: spin-reverse 4s linear infinite;
}

.glow-box::after {
  content: "";
  position: absolute;
  inset: 0.1875rem;
  background: #03035A;
  border-radius: 6.0625rem;
}

.content {
  padding: 1rem 2rem;
  z-index: 1;
  color: #FFFFFF;
  text-align: center;
  font-family: 'ES Klarheit Grotesk', sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.001125rem;
  white-space: nowrap;
}

.cta-shine {
  position: absolute;
  top: -0.1875rem;
  left: 0;
  width: 15.375rem;
  height: 3.4375rem;
  z-index: 2;
  pointer-events: none;
}

.cta-shine img {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes spin-reverse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
