@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700");
html, body {
  font-family: "Open Sans", sans-serif;
}

.btn-default {
  background-color: #FFF;
  font-size: 1.2em;
}

.btn-default:hover {
  background-color: #86BB2F;
  color: #FFF;
}

.btn-success {
  background-color: #86BB2F;
  border-color: #86BB2F;
  color: #FFF;
}

.btn-success:hover, .btn-success:active, .btn-success:focus {
  background-color: #699225;
  border-color: #699225;
  color: #FFF !important;
}

.btn-success:disabled {
  background-color: #9fd24b;
  border-color: #9fd24b;
}

.btn-success:focus {
  -webkit-box-shadow: 0 0 0 0.2rem #9fd24b;
          box-shadow: 0 0 0 0.2rem #9fd24b;
}

.modal .modal-header {
  background-color: #222222;
  color: #FFF;
}

.modal .close {
  color: #FFF;
}

.modal .modal-body {
  padding-left: 2rem;
  padding-right: 2rem;
}

.modal .modal-footer .btn {
  padding: 5px 30px;
}

body a {
  color: white;
  text-decoration: underline;
}

body a:hover {
  color: #86bb2f;
  text-decoration: underline;
}

body #loginContainer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50px;
  margin: auto;
  max-width: 450px;
  width: 90%;
  height: 420px;
  color: #FFF;
  border: 0px solid #222222;
  border-radius: 5px;
}

body #loginContainer #logo {
  padding: 15px 0;
  height: 125px;
  width: 100%;
}

body #loginContainer #logo img {
  width: 100%;
}

body #loginContainer #loginForm {
  background-color: #222222;
  width: 100%;
  height: 100%;
  height: auto;
  padding: 15px 25px;
  border-radius: 5px;
}

body #loginContainer #loginForm #loginMessage {
  height: 25px;
  display: block;
  padding-top: 5px;
}

body #loginContainer #loginForm #loginMessage span {
  display: none;
}

body #loginContainer #loginForm .btns-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

body #loginContainer #loginForm .btns-container #loginButton {
  margin-bottom: 15px;
  max-width: 124px;
  width: 100%;
}

body .btn.loading {
  padding-right: 30px;
  position: relative;
}

body .btn.loading:before {
  position: absolute;
  right: 5px;
  font: normal normal normal 24px/1 "Material Design Icons";
  display: inline-block;
  font-size: inherit;
  content: "\F771";
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -webkit-animation: mdi-spin 2s infinite linear;
  animation: mdi-spin 2s infinite linear;
}
/*# sourceMappingURL=login.css.map */