.rotating-border {
  display: inline-block;
  padding: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, #ff6600, #ff00cc, #00ccff, #ff6600);
  background-size: 300% 300%;
  animation: rotateBorder 4s linear infinite;
}

.rotating-border button {
  padding: 12px 24px;
  background-color:white;
  color: #ff007e;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 16px;
  font-weight : 700;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.rotating-border button:hover {
  background-color: #ff007e;
  color: white;
  transform: scale(1.08);
}

.rotating-border button:active {
  transform: scale(0.95);
}

@keyframes rotateBorder {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}