#sign-in-right {
  position: relative;
  overflow: hidden;

  background-image: url("/assets/servers_small-ef2e3d16.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--primary);

  &:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    opacity: 0.8;
    z-index: 2;
    box-shadow: inset 0 0 100px 30px black;
  }

  span {
    font-size: 28px;
    position: relative;
    z-index: 3;
  }

  .video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: calc(100% + 40px);
    aspect-ratio: 16 / 9;
  }

  video {
    position: absolute;
    top: -10px;
    height: calc(100% + 20px);
    object-position: center;
    filter: blur(3px);
    left: -10px;
    width: calc(100% + 20px);
  }
}

#sign-in-left {
  @media (max-width: 576px) {
    padding: 20px !important;
  }
}
