html,
body {
    position: relative;
    height: 100%;
}

body {
    background-color:aliceblue;
    margin: 0;
    padding: 0;
}
a{
  width: max-content;
}
#login-page{
  min-height: 100%;
  min-width: 100%;
  background : url(../media/landing.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#login-row{
  display: flex;
  justify-content: center;
  align-content: center;
}
.login-form-wrapper{
  height: 50%;
}
.login-form-div{
  background-color: rgb(232, 240, 242, 0.8);
  border-radius: 10px;
  height: 70%;
  text-align: center;
  position: relative;
}
.login-form{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
input{
  margin:10px;
}
input[type=text], input[type=password]{
  width: 100%;
  border:1px darkslategray;
  border-radius: 5px;
}
#logo{
  position: absolute;
  left: 0;
  height: 80px;
  width: 80px;
}


@media screen and  (min-width: 768px){
.container, .container-md, .container-sm {
    max-width: 992px;
  }

}
@media screen and (max-width:991px) {
  .login-form-div{
    height: 40%;
  }
  input[type=text], input[type=password]{
    height:45px;
    font-size: 25px;

  }
}
