#cyclistshub-discount-button {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.cyclistshub-btn {
  background-color: #FF1861;
  color: #FFFFFF;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cyclistshub-btn:hover {
  background-color: #1d3461;
	background: #1d3461;
	box-shadow: 0 5px 20px rgba(11,20,38,0.5);
}

/* Animation */
@keyframes btnClick {
  0% { transform: scale(1); }
  50% { transform: scale(0.9); }
  100% { transform: scale(1); }
}