.glow-text {
  color: #fff;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 15px #7000ff,
    0 0 20px #7000ff;
}

.glow-btn {
  background-color: #7000ff;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 0.5rem;
  box-shadow:
    0 0 5px #7000ff,
    0 0 7px #7000ff,
    0 0 10px #7000ff;
  transition: box-shadow 0.3s ease;
}

.glow-btn:hover {
  box-shadow:
    0 0 5px #7000ff,
    0 0 7px #7000ff,
    0 0 10px #7000ff;
}
