#form-login{
    margin-top: 10%;
}
#home{
    margin-bottom: 25%;
}

video {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 270px;
  object-fit: cover;
  background-color: #000;
}
.scan
{
    position: relative;
  width: 100%;
  height: 5px;
  background: linear-gradient(cyan, transparent);
  animation: scanning 1.5s linear alternate infinite;
  z-index:99;
}

@keyframes scanning
{
  0%{transform: translatey(0px);}
  100%{transform: translatey(270px);}
}