#rec718172027 .button-with-glow {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(90deg, #4e54c8, #8f94fb);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

#rec718172027 .button-with-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  transform: skewX(-30deg);
  transition: left 0.5s ease;
}

#rec718172027 .button-with-glow:hover::before {
  left: 100%;
}

#rec718172027 .button-with-glow:hover {
  background: linear-gradient(90deg, #8f94fb, #4e54c8);
  box-shadow: 0 4px 20px rgba(78, 84, 200, 0.5);
}

  box-shadow: 0 4px 20px rgba(78, 84, 200, 0.5);
}
