.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: 100%;
  height: 100%;*/
  width: 135%;
  height: 120%;
  /*opacity: 0.5;*/
  filter: blur(14px);
}

.glow-layer-1 {
  border: 2px solid rgba(225, 225, 225, 0.6);
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(1px);
}

.glow-layer-2 {
  border: 2px solid var(--color-neutral1);
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(4px);
}

.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, white, transparent 30%, transparent 70%, white );
}

.overlay-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  transform: scale(1.01);
  filter: blur(15px);
  background: linear-gradient( -30deg, white, transparent 30%, transparent 70%, white );
}

.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: 0.3;
  z-index: -1;
  background: linear-gradient( -30deg, var(--color-neutral1), transparent, var(--color-neutral1) );
}