.header {
  position: unset;
  background: #F5F5F4;
}
.header .main_menu > li > a {
  color: #1F1F1F;
}
.header .user_btn {
  color: rgba(102, 102, 102, 0.7);
}
.header .main_logo .one_logo {
  display: block;
}
.header .main_logo .logo_standard {
  display: none;
}
.header.fixed {
  box-shadow: none;
  height: auto;
}
.header.fixed .book_btn {
  background: #ffffff;
  border: unset;
  color: #1F1F1F;
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.login_page {
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
  flex: 1;
  height: 60%;
  display: flex;
  flex-direction: column;
}
.login_page .page_title {
  width: 100%;
  padding: 0;
  margin: 0;
}

.login_inner {
  padding: 40px 20px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  flex: 1;
  height: 60%;
}

.login_form {
  padding: 55px 80px;
  width: 580px;
  max-width: 100%;
  background: #F6F5F4;
  margin: 0 auto;
}
.login_form form {
  padding-top: 16px;
}
.login_form .field_block {
  margin: 0;
  padding-top: 24px;
  position: relative;
}
.login_form .field_block.pass_field input {
  padding-right: 40px;
}
.login_form input {
  font-size: 140%;
  line-height: 18px;
  border: 1px solid #EAEAEA;
  box-shadow: none;
  color: #1F1F1F;
  padding: 15px 16px;
}
.login_form input::placeholder {
  font-size: 100%;
  color: #9A9A9A;
}
.login_form .forgot_pass {
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
}
.login_form .forgot_pass a {
  display: block;
  font-size: 160%;
  line-height: 1.25em;
  color: #9A9A9A;
  font-family: "sans-medium";
}
.login_form button {
  width: 100%;
  font-size: 160%;
  line-height: 20px;
  text-align: center;
  border: none;
  font-family: "sans-medium";
  color: #ffffff;
  background: #E6AC17;
  margin-top: 32px;
  padding: 20px;
}
.login_form .create_link {
  font-size: 160%;
  line-height: 20px;
  font-family: "sans-medium";
  color: #9A9A9A;
  display: flex;
  justify-content: center;
  padding-top: 32px;
  flex-wrap: wrap;
  text-transform: uppercase;
}
.login_form .create_link a {
  display: inline-block;
  color: #E6AC17;
  text-decoration: underline;
}
.login_form .field_row {
  display: flex;
  margin: 0 -10px;
}
.login_form .field_row > .field_block {
  max-width: 50%;
  flex: 0 0 50%;
  padding: 0 10px;
}
.login_form .show_pass {
  position: absolute;
  right: 15px;
  top: 40px;
  color: #9A9A9A;
  font-size: 180%;
  line-height: 1.25em;
  display: block;
  cursor: pointer;
}
.login_form .show_pass.show:after {
  opacity: 1;
}
.login_form .show_pass:after {
  content: "";
  position: absolute;
  right: -2px;
  top: 9px;
  width: 22px;
  height: 2px;
  background: #9A9A9A;
  transform: rotate(45deg);
  opacity: 0;
}

.form_description {
  font-size: 140%;
  line-height: 18px;
  color: #1F1F1F;
  padding-top: 22px;
}

.terms_block {
  padding-top: 28px;
  font-size: 140%;
  line-height: 1.25em;
  color: #9A9A9A;
}
.terms_block a {
  display: inline-block;
  color: #9A9A9A;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .login_page {
    background-position: bottom center;
  }
}
@media screen and (max-width: 639px) {
  .login_form {
    padding: 40px;
  }
}
@media screen and (max-width: 479px) {
  .login_form {
    padding: 40px 20px;
  }
  .login_form .field_block {
    padding-top: 20px;
  }
  .login_form .forgot_pass {
    padding-top: 15px;
  }
  .login_form .forgot_pass a {
    font-size: 140%;
    line-height: 18px;
  }
  .login_form form {
    padding-top: 10px;
  }
  .login_form button {
    margin-top: 24px;
    padding: 17px;
    font-size: 140%;
    line-height: 18px;
  }
  .login_form .create_link {
    padding-top: 24px;
    font-size: 140%;
    line-height: 18px;
  }
  .login_form .show_pass {
    top: 35px;
  }
  .login_form .show_pass:after {
    top: 10px;
  }
  .login_form .field_row {
    flex-direction: column;
    margin: 0;
    padding-top: 0;
  }
  .login_form .field_row > .field_block {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 20px 0 0;
  }
}
@media screen and (max-width: 399px) {
  .login_inner {
    padding: 40px 12px;
  }

  .login_form {
    padding: 30px 15px;
  }
  .login_form input {
    font-size: 130%;
    line-height: 16px;
    padding: 12px;
  }
  .login_form form {
    padding-top: 5px;
  }
  .login_form button {
    padding: 13px;
    margin-top: 20px;
  }
  .login_form .create_link {
    padding-top: 20px;
  }
  .login_form .form_description {
    padding-top: 16px;
    font-size: 130%;
    line-height: 16px;
  }
  .login_form .show_pass {
    top: 32px;
    font-size: 160%;
  }
  .login_form .show_pass:after {
    top: 8px;
    right: -3px;
  }
}
.web .login_form .forgot_pass a:hover {
  color: rgba(154, 154, 154, 0.7);
}
.web .login_form .create_link a:hover,
.web .login_form .terms_block a:hover {
  color: rgba(230, 172, 23, 0.7);
}
.web .login_form button:hover {
  background: rgba(230, 172, 23, 0.7);
}

.touch .login_form .forgot_pass a:active {
  color: rgba(154, 154, 154, 0.7);
}
.touch .login_form .create_link a:active,
.touch .login_form .terms_block a:active {
  color: rgba(230, 172, 23, 0.7);
}
.touch .login_form button:active {
  background: rgba(230, 172, 23, 0.7);
}

.login_form .show_pass:after {
  -o-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.web .login_form .forgot_pass a, .web .login_form .create_link a,
.web .login_form .terms_block a {
  -o-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.web .login_form button {
  -o-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.touch .login_form .forgot_pass a, .touch .login_form .create_link a,
.touch .login_form .terms_block a {
  -o-transition: color 0.15s;
  -ms-transition: color 0.15s;
  -moz-transition: color 0.15s;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.touch .login_form button {
  -o-transition: background-color 0.15s;
  -ms-transition: background-color 0.15s;
  -moz-transition: background-color 0.15s;
  -webkit-transition: background-color 0.15s;
  transition: background-color 0.15s;
}

/*# sourceMappingURL=login.css.map */
