
.neon-button[data-v-8891a5fc] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  padding: calc(0.7em - 2px) 1.2em;
  cursor: pointer;
  font-size: 14px;
  border-radius: 0.5em;
  background: #000;
  border: 2px solid;
  min-width: 80px;
  box-sizing: border-box;
}
.button-icon[data-v-8891a5fc] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.neon-button[data-v-8891a5fc]:active {
  color: #ffffff;
  box-shadow: inset 0 0 10px rgba(0, 255, 234, 0.7) !important;
}
.neon-button[data-v-8891a5fc]:before,
.neon-button[data-v-8891a5fc]:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 255, 234, 0.2);
  z-index: -1;
  transform: scale(0);
  transition: transform 0.5s;
  border-radius: inherit;
}
.neon-button[data-v-8891a5fc]:before {
  transition-delay: 0s;
}
.neon-button[data-v-8891a5fc]:after {
  transition-delay: 0.25s;
}
.neon-button[data-v-8891a5fc]:hover:before,
.neon-button[data-v-8891a5fc]:hover:after {
  transform: scale(1.2);
}
