html {
  /* height: 100%; */
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  background-color: #25333D;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: normal;
  color: #505050;
  -webkit-tap-highlight-color: transparent;
}

body .error_message {
  position: fixed;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eaebef;
}

body .error_message img {
  display: block;
  margin: 0 auto;
  padding-left: 100px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.body-container {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

h1, h2 {
  line-height: 1;
}

b {
  font-weight: 500;
}

a, .link {
  color: #000;
  text-decoration: none;
}

a:link, .link:link {
  color: #000;
  text-decoration: none;
}

a:hover, .link:hover {
  cursor: pointer;
  color: #000;
  text-decoration: underline;
}

.logo {
  position: relative;
  padding-bottom: 0;
  text-align: center;
}

.company-logo {
  height: 100px;
  width: 200px;
  background-image: url("/_files/images/logo.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.login-intro {
  color: #fff;
  width: 60%;
  text-align: center;
}

.login-intro h1 {
  font-size: 32px;
}

.login-intro p {
  padding-bottom: 25px;
}

.login-intro ul {
  max-width: 450px;
  margin: 0px auto;
  text-align: left;
  list-style: none;
  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;
}

.login-intro ul li {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 25px;
}

.login-intro ul li img {
  width: 25px;
  margin-right: 15px;
}

.login-intro small {
  font-size: 85%;
}

.admin-screenshot {
  background: url(/_files/images/admin-screenshot.jpg) no-repeat center top;
  background-size: cover;
  height: 100%;
  background-color: black;
  opacity: 0.5;
}

.intro-logo {
  width: 250px;
  max-width: 60%;
  margin-top: 25px;
}

.login-container {
  background-color: #fff;
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login-container h2 {
  font-weight: 600;
  font-size: 24px;
  padding: 0 0 15px 0;
  color: #3E3E3E;
  text-align: center;
  text-transform: uppercase;
}

.login-container label {
  display: inline-block;
  font-size: 75%;
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 400;
  color: black;
}

.login-padding {
  margin: 0px auto;
  padding: 4vh 2vw;
}

.login-caption {
  font-size: 50%;
  text-align: center;
  color: #3E3E3E;
}

.input-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;
  padding: 0px 0px 5px 0px;
  margin-right: 5px;
}

.input-container input {
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 12px;
  line-height: 1.3;
  font-weight: normal;
  color: #000;
  padding: 10px 10px;
  background-color: #fff;
  border: 2px solid #E6E7E7;
  margin: 0px;
  height: 30px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -webkit-transition: opacity 0.5s ease, background 0.5s ease, border 0.5s ease;
  transition: opacity 0.5s ease, background 0.5s ease, border 0.5s ease;
}

form input:hover {
  border-color: #888;
}

form input:focus {
  border: 2px solid #000;
  -webkit-box-shadow: 0 0 1px 3px #000;
          box-shadow: 0 0 1px 3px #000;
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  outline: none;
}

.select-css {
  display: block;
  color: #444;
  font-size: 12px;
  line-height: 1.3;
  padding: .6em 1.4em .6em .8em;
  width: 100%;
  max-width: 100%;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%, 0 0;
  background-size: .65em auto, 100%;
  margin: 0;
  border: 2px solid #E6E7E7;
  background-image: url("/_files/images/select-arrow.svg");
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%, 0 0;
  background-size: .65em auto, 100%;
  -webkit-transition: opacity 0.5s ease, background 0.5s ease, border 0.5s ease;
  transition: opacity 0.5s ease, background 0.5s ease, border 0.5s ease;
}

.select-css::-ms-expand {
  display: none;
}

.select-css:hover {
  border-color: #888;
}

.select-css:focus {
  border: 2px solid #000;
  -webkit-box-shadow: 0 0 1px 3px #000;
          box-shadow: 0 0 1px 3px #000;
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}

.select-css option {
  font-weight: normal;
}

ul.parsley-errors-list {
  width: 100%;
  list-style: none;
  color: red;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
  margin: 0px;
  font-size: 65%;
}

ul.parsley-errors-list li {
  margin: 5px 0px 0px 0px;
}

input[type=text].parsley-error,
input[type=email].parsley-error,
input[type=password].parsley-error,
textarea.parsley-error,
.select-css.parsley-error {
  border: 2px solid red;
}

.password-error {
  width: 100%;
  font-size: 8pt;
  color: #A22330;
  padding-left: 5px;
  padding-bottom: 15px;
}

.submit-row {
  padding-top: 25px;
  text-align: center;
}

input[type=button],
.button {
  background-color: white;
  font-family: "Fragment Mono", sans-serif;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  padding: 1rem 2rem;
  color: black;
  border: 1px solid black;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -webkit-transition: none;
  transition: none;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
input[type=button]:hover,
.button:hover {
  background-color: rgb(230, 230, 230)
}

.break-or {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0px 20px 0;
  font-size: 14px;
}

.break-or hr {
  -webkit-box-flex: 5;
      -ms-flex-positive: 5;
          flex-grow: 5;
}

.break-or div {
  padding: 0px 10px;
}

.login-link {
  text-align: center;
  margin-top: 0px;
  padding-bottom: 25px;
}
.login-link a {
  text-decoration: underline;
}

#login-form {
  width: 400px;
}

@media only screen and (max-width: 900px) {
  .admin-screenshot {
    height: 75vh;
  }
  .body-container {
    display: block;
  }
  .login-intro, .login-container {
    width: 100%;
  }
  .login-intro h1 {
    font-size: 28px;
  }
  .login-container h2 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 500px) {
  .login-intro ul {
    padding-bottom: 10px;
  }
  .login-intro ul li {
    width: 100%;
    padding-bottom: 15px;
  }
  .login-intro h1 {
    font-size: 24px;
  }
  .login-container h2 {
    font-size: 20px;
  }
}
/*# sourceMappingURL=login.css.map */

.flex-wrapper {
  display: flex;
}
.left-wrapper,
.right-wrapper {
  width: 50%;
}

/* #.g-recaptcha div { margin-left: auto; margin-right: auto;} */