html,
body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body footer {
  width: 100vw;
  height: 10vh;
  padding: 10px;
  text-align: center;
  position: relative;
}

body footer .copyright {
  position: absolute;
  left: 0;
  bottom: 20px;
}

body footer .copyright div {
  width: 100vw;
  text-align: center;
  color: #707070;
  font-size: calc(14px - 2px);
}

body footer .copyright div a {
  color: #707070;
  text-decoration: underline;
}

body footer .copyright div a:hover {
  color: #7ca61a;
  text-decoration: none;
}

/* bgn login */
body.login {
  background-color: #333;
}

body.login header {
  display: none;
}

body.login main {
  width: 100vw;
  height: 90vh;
}

section#login {
  width: 100%;
  height: 100%;
  padding: 40px 60px;
  background-color: #fff;
  margin: 0;
}

@media (min-width: 576px) {
  section#login {
    width: 450px;
    height: 500px;
    padding: 30px 60px;
    border-radius: 5px;
    -webkit-box-shadow: 5px 10px 8px #000;
            box-shadow: 5px 10px 8px #000;
    position: absolute;
    top: calc(50vh - 300px);
    left: calc(50vw - 225px);
  }
}

section#login legend {
  font-weight: bold;
  color: #7ca61a;
  font-weight: 300;
  font-size: 18px;
  margin-top: 10px;
}

@media (min-width: 576px) {
  section#login legend {
    font-size: 24px;
  }
}

section#login label {
  font-weight: bold;
  color: #000;
  line-height: 14px;
  margin-top: 20px;
}

section#login label span.required {
  font-size: calc(14px + 2px);
  line-height: 10px;
  color: #e22626;
  display: inline-block;
  margin-right: 5px;
}

section#login input {
  width: 100%;
  padding: 5px 10px;
}

section#login a {
  color: #7ca61a;
  text-decoration: underline;
  margin-top: 10px;
}

section#login a:hover {
  color: #000;
  text-decoration: none;
}

section#login button {
  background-color: #7ca61a;
  color: #fff;
  border: none;
  font-weight: bold;
  font-size: calc(14px + 2px);
  padding: 10px 20px;
  margin-top: 30px;
}

section#login #frmLogin .row {
  margin: 0 0 10px 0;
}

/* end login */
/* bgn home */
body.index {
  background-color: #fff;
}

body.index header {
  display: block;
  width: 100vw;
  height: 10vh;
  padding: 20px;
}

body.index main {
  width: 100vw;
  min-height: 80vh;
  height: auto !important;
}

section#content {
  padding: 50px;
  text-align: center;
}

section#content button {
  display: inline-block;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  background-color: #fff;
  margin: 40px 20px;
}

/* end home */
/*# sourceMappingURL=main.css.map */