@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Применение стилей к кнопке */
.custom-gradient-btn {
  background: linear-gradient(270deg, #ff6ec4, #7873f5);
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
  color: white !important;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s;
}

/* Добавление эффекта при наведении */
.custom-gradient-btn:hover {
  transform: scale(1.05);
}