/* All Sections(Main content) */
main.content section {
  color: var(--txt-clr);
}

main.content section > div {
  background-color: var(--bg-sec-clr);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  height: 91vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

main.content section > div .loginForm {
  margin-top: 10vh;
  width: 85vw;
}

main.content section > div .loginForm .sectionTitle {
  margin-bottom: 1em;
  text-align: center;
}

/* End all sections */
/* Responsive Mode for Desktop */
@media only screen and (min-width: 992px) {
  main.content section {
    margin: 0 17vw;
  }
  main.content section .login {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main.content section .login .loginForm {
    margin-top: 0;
    width: 50%;
  }
}

/* End Responsive Mode for Desktop */
/*# sourceMappingURL=login.css.map */