@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}
.content img {
  width: 100%;
  height: 100px;
}

.content h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 3rem;
}
.btn-login {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100px;
}
.btn-login a {
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  padding: 5px 100px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  margin-left: 100px;
  background: #5076b5;
}
.btn-login a:hover {
  color: #5076b5;
  background: white;
  border: 3px solid #5076b5;
}

@media screen and (min-width: 320px) and (max-width: 992px)  {
    .content{
        width: 90%;
    }
    .content img{
        height: 90%;
    }
    .btn-login  {
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 40px;
        bottom: 200px;
    }
    .btn-login  a{
        width: 100%;
        margin-left: 0;
        padding: 0;
    }
    }
  