.canvas-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top:0;
  left:0;
}

.electric-border-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 135%;
  height: 123%;
}

.glow-layer-1 {
  border: 2px solid rgba(128, 234, 0, 0.6);
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(10px);
}

.glow-layer-2 {
  border: 2px solid var(--color2);
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(5px);
}

.overlay-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  opacity: 1;
  mix-blend-mode: overlay;
  transform: scale(1.01);
  filter: blur(15px);
  background: linear-gradient(-30deg,#86c455,transparent 30%,transparent 70%,#b0ea86);
}

.overlay-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  opacity: .5;
  mix-blend-mode: overlay;
  transform: scale(1.01);
  filter: blur(15px);
  background: linear-gradient(-30deg,#a2dc77,transparent 30%,transparent 70%,#9dd870);
}

.background-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  filter: blur(32px);
  transform: scale(1.1);
  opacity: .3;
  z-index: -1;
  background: linear-gradient(-30deg,var(--color2),transparent,var(--color2));
}