@import url('../../common.css');
@import url('../common.css');

/* -------------------- */

body > .page {
  width: 100%;
  position: relative;
  min-height: 100vh;
  display: flex;
}

body > .page .left-half {
  width: 50%;
  min-height: 100vh;
  background: #bac1d0;
  background-size: cover;
}

body > .page .right-half {
  width: 50%;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}

.page button {
  border-radius: 4px !important;
  background-color: #00a3c7;
}

/* ----------------------- */

.image-fader {
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ----------------------- */

.login-form {
  background: #fff none repeat scroll 0 0;
  margin: 0 auto 80px auto;
  box-sizing: border-box;
  padding: 40px 40px;
  position: relative;
  width: 350px;
  z-index: 1;
  text-align: left;
  border-radius: 4px;
  overflow: hidden;
  vertical-align: middle;
  -webkit-box-shadow: 0 -5px 36px 0 rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 0 -5px 36px 0 rgba(0, 0, 0, 0.19);
  box-shadow: 0 -5px 36px 0 rgba(0, 0, 0, 0.19);
}

.login-form h3 {
  text-align: center;
  color: #858CA0;
}

.login-form input {
  width: 100%;
  box-sizing: border-box;
}

.login-form input.rememberme {
  width: auto;
}

.login-form .signup {
  padding-top: 20px;
  color: #B9C2D3;
  line-height: 22px;
}

.login-form .signup a{
  color: #8AA5CC;
}

.login-form button {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.login-form .k-button.k-primary:not(.k-disabled) {
  background-color: #8AA5CC;
  border-color: #8AA5CC;
}

.login-form .form-error {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.form-error a,
.field-error a{
  color: #FFFFFF; text-decoration: underline;
}

.contents {
  padding-top: 20vh;
  box-sizing: border-box;
  width: 100%;
}

.logo {
  width: 220px;
  height: 100px;
  background-image: url(../../../img/logo.svg);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 3;
}

/* ----------------------- */

h3 {
  font-size: 13px;
  text-align: left;
  -webkit-padding-before: 0;
}

.login-label {
  text-transform: none;
  margin: 2em 0 1em;
}

.need-help-label {
  font-size: 13px;
  color: #B9C2D3;
  text-transform: none;
  margin: 2em 0 1em;
}

/* ----------------------- */

body > .footer {
  text-align: left;
  font-size: 13px;
  color: #494D59;
  position: absolute;
  bottom: 2%;
  left: 1%;
  right: 0;
  height: 0;
  border-top: 0;
  z-index: 10;
}

body > .footer a {
  text-decoration: underline;
  color: #494D59;
}

/* ----------------------- */

@media screen and (max-width: 840px) {

  body > .page .left-half {
    text-align: center;
    vertical-align: middle;
    width: 100%;
  }

  body > .page .right-half {
    display: none;
  }

  body > .page .image-fader {
    display: none;
  }

  .logo {
    left: 50%;
    transform: translate(-50%, 0);
  }
}

/* for extra small screens----------------------- */

@media screen and (max-height: 730px) {
  .contents {
    padding-top: 0;
  }

  .logo {
    margin: 0 auto 10px auto;
  }
}



