.btn-early-registration {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-early-registration span {
  margin-right: 10px;
  position: relative;
  z-index: 1;
}

.btn-early-registration i {
  font-size: 1.2em;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-early-registration:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.btn-early-registration:hover i {
  transform: translateX(5px);
}

.btn-early-registration::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff8e53, #ff6b6b);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-early-registration:hover::before {
  opacity: 1;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
  }
  50% {
    box-shadow: 0 4px 25px rgba(255, 107, 107, 0.4);
  }
  100% {
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
  }
}

.btn-early-registration {
  animation: pulse 2s infinite;
}
