/* helpers */
.hidden {
  display: none;
}
.float_right {
  float: right;
}
.float_left {
  float: left;
}
.login-wrapper {
  flex: 1;
  min-width: 220px;
  font-family: 'Open Sans', sans-serif;
  /* buttons */
  /* input */
}
.login-wrapper__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 0;
  background: url("../../../images/new/login/background.jpg") no-repeat top center fixed;
  background-size: cover;
}
.login-wrapper .content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 50px;
  overflow: hidden;
}
.login-wrapper .col {
  padding: 0 4%;
}
.login-wrapper .h1,
.login-wrapper .h2 {
  color: #fff;
  text-align: center;
}
.login-wrapper .h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.login-wrapper .h1 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 40px;
}
.login-wrapper .text_link {
  text-decoration: underline;
  color: #0e98a2;
}
.login-wrapper .text_small {
  font-size: 14px;
}
.login-wrapper .text_error {
  color: red;
}
.login-wrapper .button {
  display: block;
  border-radius: 2px;
  border: 0;
  height: 49px;
  text-align: center;
  color: #fff;
  margin-bottom: 19px;
  font-size: 18px;
  letter-spacing: -0.2px;
  cursor: pointer;
  padding: 0;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease;
  min-width: 0;
}
.login-wrapper .button:focus {
  outline: 0;
}
.login-wrapper .button:hover {
  opacity: 0.8;
}
.login-wrapper .button_primary {
  background-color: #25b9c6;
  width: 130px;
}
.login-wrapper .button_submit {
  margin-bottom: 0;
}
.login-wrapper .button_facebook {
  padding: 0 30px 0 50px;
  background-color: #344f8A;
  background-image: url("../../../images/widget-login/fb.png");
  background-position: 15px center;
}
.login-wrapper .button_google {
  padding: 0 30px 0 50px;
  background-color: #e24829;
  background-image: url("../../../images/widget-login/google.png");
  background-position: 15px center;
}
.login-wrapper .button_oom {
  padding: 0 30px 0 50px;
  background-image: url("../../../images/widget-login/oom.png");
  background-position: 15px center;
}
.login-wrapper .button_wide {
  width: 100%;
}
.login-wrapper .input {
  position: relative;
  width: 100%;
  margin-bottom: 19px;
  border-radius: 2px;
  background-color: #fff;
  height: 49px;
}
.login-wrapper .input input {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 0 18px;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.2px;
  color: #000;
  border: 1px solid #8e8e8e;
  border-radius: 5px;
}
.login-wrapper .input input:focus {
  outline: 0;
}
.login-wrapper .input_placeholder {
  position: absolute;
  left: 19px;
  top: 17px;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.2px;
  color: #8b8b8b;
  opacity: 0.8;
}
.login-wrapper .checkbox {
  margin-bottom: 15px;
  position: relative;
}
.login-wrapper .checkbox label {
  display: block;
}
.login-wrapper .checkbox input {
  position: absolute;
  top: -1px;
}
.login-wrapper .checkbox_label {
  display: inline-block;
  padding-left: 25px;
  line-height: 17px;
}
.login-wrapper .login-form-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.login-wrapper .forget-password-box {
  flex: 1;
  line-height: 16px;
}
.login-wrapper .submittion-box {
  padding-left: 10px;
}
.login-wrapper .form-login-header {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 18px;
}
.login-wrapper input:-webkit-autofill + label {
  display: none;
}
@media screen and (min-width: 750px) {
  .login-wrapper .col {
    float: left;
    width: 42%;
  }
}
.country-authorized {
  width: 80%;
  margin: 40px auto;
}
.country-authorized .h2 {
  color: #26b8c6;
  font-size: 40px;
}
.info-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 94px;
  height: 94px;
  border-radius: 47px;
  border: 3px solid #289b9d;
  background-color: #21ced4;
}
.info-icon:before {
  content: ' ';
  display: inline-block;
  width: 60px;
  height: 60px;
}
.info-icon_organizer:before {
  background: url("../../../images/new/login/organizer.svg") no-repeat center center;
}
.info-icon_lists:before {
  background: url("../../../images/new/login/lists.svg") no-repeat center center;
}
.info-icon_accessibility:before {
  background: url("../../../images/new/login/accessibility.svg") no-repeat center center;
}
.login-info-block {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  width: 100%;
  max-width: 600px;
}
.login-info-block-item {
  width: 33%;
  margin: 0 10px;
  text-align: center;
}
.login-info-block-item:first-child {
  margin-left: 0;
}
.login-info-block-item:last-child {
  margin-right: 0;
}
.login-info-block-item__image {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.login-info-block-item__text {
  font-size: 18px;
  line-height: 22px;
  color: #00484e;
}
@media screen and (max-width: 749px) {
  .login-wrapper__header {
    padding: 40px 0;
  }
  .login-wrapper .content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .login-wrapper .h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .login-wrapper .h1 {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .login-wrapper .col + .col {
    margin-top: 30px;
  }
  .login-wrapper .form-login-header {
    margin: 3px 0 30px;
    text-align: center;
  }
  .info-icon {
    width: 66px;
    height: 66px;
  }
  .info-icon:before {
    width: 40px;
    height: 40px;
    background-size: 70% auto;
  }
  .login-info-block {
    padding: 0 4%;
  }
  .login-info-block-item {
    margin: 0 5px;
  }
  .login-info-block-item__text {
    font-size: 14px;
    line-height: 18px;
  }
  .login-info-block-item__image {
    margin-bottom: 13px;
  }
  .country-authorized {
    margin: 20px auto;
  }
  .country-authorized .h2 {
    font-size: 25px;
  }
}
