html {
  height: 100%;
  font-size: 16px;
}
body {
  height: 100%;
  margin: 0;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  /* line-height: 1.7rem; */
}

.page-container {
  display: flex;
  flex-direction: row;
  height: 102%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin:-2px;
}

.login-container {
  width: 800px;
  height: 638px;
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.7);
  color: #f1f1f1;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 50px;
}

.org-logo-container {
  display:flex;
  justify-content: center;
  margin-top: -15px;
}

.org-logo {
  height: 110px;
}

.main-content-container {
  font-size: 1.5rem;
}
.title {
  font-size: 2.7rem;
  color: yellow;
  font-weight: bold;
  line-height: 3.3rem;
}
.desc{
  line-height: 1.7rem;
}
.forgot-pwd-container {
  display: flex;
  align-items: flex-end;
}
.forgot-pwd {
  text-decoration: underline;
  color: white;
  font-size: 1.2rem;
  margin-left: 15px;
}
.btn-group-lg>.btn, .btn-lg {
  border-radius: .8rem;
}
.login {
  width: 190px;
}

/** For medium (MD) screen **/
@media (max-width: 991px) {
  .page-container {
    height: 100%;
  }
  .login-container {
    width: 605px;
    height: 695px;
  }
}

@media (max-height: 415px) and (max-width: 991px) {
  .page-container {
    height: 190%;
  }
}

/** For small (SM) screen **/
@media (max-width: 767px) {
  html{
    font-size: 15px;
  }
  .page-container {
    height: 102%;
  }
  .login-container {
    width: 605px;
    min-width: 605px;
    height: 510px;
    padding: 11px;
  }
  .org-logo-container {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .org-logo {
    height: 95px;
  }
  .title {
    font-size: 2.1rem;
    line-height: 2.3rem;
  }
  .main-content-container {
    font-size: 1.35rem;
    margin-top: 1.2rem;
  }
  .forgot-pwd {
    margin-left: 0px;
    font-size: 1rem;
    line-height: 1.4rem;
  }
}

@media (max-height: 415px) and (max-width: 767px) {
  .page-container {
    height: 145%;
  }
}
@media (max-height: 285px) and (max-width: 767px) {
  .page-container {
    height: 185%;
  }
}
/** For extra small (XS) screen **/
@media (max-width: 575px) {
  .page-container {
    height: 115%;
    width: 108%;
  }
  .login-container {
    width: 350px;
    min-width: 350px;
    height: 650px;
  }
  .login {
    width: 115px;
  }
}
@media (max-height: 325px) and (max-width: 575px) {
  .page-container {
    height: 210%;
  }
}

@media (max-width: 281px) {
  .page-container {
    height: 125%;
    width: 125%;
  }
}
