.video-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: #222426;
}

.video-wrapper .video-player {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  transition: opacity .4s ease, visibility .4s ease;
}

.video-wrapper .fg-authentication-video-player.loading {
  opacity: 0;
  visibility: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1000;

  overflow: hidden;

  width: 100vw;
  height: 100vh;

  object-fit: cover;
}
