@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
*{
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    outline: none;
}
.banner {
  height: 100vh;
  background-image: url("../img/bg-5.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
box-container{
    height:100vh;
    width:100vw;
    position:fix;
    overflow-y:auto;
}
.box-container::before{
    z-index:1;
    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#000;
    /*background-image: linear-gradient(120deg, #eaee44, #33d0ff);*/
    opacity: .7;
}
.banner .inner-banner {
  width: 90%;
  height: 90%;
  z-index: 100;
}
.banner .inner-banner .logo-container {
  height: 15%;
  display: flex;
  align-items: center;
  z-index: 100;
}
.banner .inner-banner .logo-container .logo {
  width: 75px;
  z-index: 100;
}
.banner .inner-banner .text {
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.banner .inner-banner .text h1 {
  width: 100%;
  text-align: left;
  z-index: 100;
}
.banner .inner-banner .text p {
  width: 100% !important;
  text-align: left;
  z-index: 100;
}
.banner .inner-banner .footer {
  display: flex;
  height: 5%;
  z-index: 100;
}
.banner .inner-banner .footer .copy {
  opacity: 0.8;
  font-style: italic;
  margin: auto 0 0;
  padding: 0;
  z-index: 100;
}
.banner .inner-banner .footer a {
  margin: auto 0 0;
  padding: 0;
  z-index: 100;
}
.box-login{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}
.login-form {
  display: flex;
  margin: 20px auto auto;
  width: 90%;
  height: 90%;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.login-form h3{
    color:#fff;
    z-index:100;
}
@media (max-width: 991px) {
  html {
    font-size: 85%;
  }
  .banner {
    max-height: 40vh;
  }
  .banner .inner-banner .logo-container {
    height: 25%;
  }
  .banner .inner-banner .logo-container .logo {
    width: 50px;
  }
  .banner .inner-banner .text {
    height: 65%;
  }
  .banner .inner-banner .footer {
    height: 10%;
  }
  .box-login {
    min-height: 50vh;
    max-height: 60vh;
  }
}
@media (max-width: 575px) {
    .banner .inner-banner .text {
    font-size: 90%;
  }
  .banner {
    max-height:40vh;
  }
  .box-login{
      min-height:50vh;
      max-height:60vh;
      padding:0 !important;
      margin:0 !important;
  }
  .login-form {
    /*height: 100%;*/
    margin:auto !important;
  }
  .footer a,
  .footer p {
      font-size:75%;
  }
}/*# sourceMappingURL=login.css.map */