
.glow-border-button[data-v-c2a79235] {
  position: relative;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #0ce39a, #69007f, #fc0987);
  padding: 0.7em 1.2em;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  outline: none;
  min-width: 100px;
  transition: transform 0.2s;
}
.glow-border-button[data-v-c2a79235]:active {
  transform: scale(0.98);
}
.button-content[data-v-c2a79235] {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.button-icon[data-v-c2a79235] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.button-text[data-v-c2a79235] {
  white-space: nowrap;
}
.glow-border-button[data-v-c2a79235]::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #272727;
  border-radius: 9px;
  transition: 0.5s;
}
.glow-border-button[data-v-c2a79235]:hover::before {
  opacity: 0.7;
}
.glow-border-button[data-v-c2a79235]::after {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(45deg, #0ce39a, #69007f, #fc0987);
  border-radius: 9px;
  transition: 0.5s;
  opacity: 0;
  filter: blur(20px);
}
.glow-border-button[data-v-c2a79235]:hover::after {
  opacity: 1;
}
