* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  font-family: Arial, Tahoma, Verdana, Geneva, Sans-serif;
}

.container {
  width: 100%;
  max-width: 1017px;
  margin: 0 auto;
  padding: 0 17px;
}

.body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}

.header {
  background-color: #64b112;
  display: flex;
  align-items: center;
  min-height: 42px;
}
.header__logo-box {
  display: flex;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.header__logo {
  display: flex;
}
.header__logo > img {
  width: 117px;
}

.pa-reg-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 0 0;
}
.pa-reg-box__hidden-title {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 9px;
  line-height: 21px;
  animation: blink 0.2s 2;
}
.pa-reg-box__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 348px;
}
.pa-reg-box__input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 5px;
  border: 1px solid #C7C7C7;
}
.pa-reg-box__input::-moz-placeholder {
  color: #C7C7C7;
  font-size: 14px;
}
.pa-reg-box__input::placeholder {
  color: #C7C7C7;
  font-size: 14px;
}
.pa-reg-box__input_log {
  margin-bottom: 17px;
}
.pa-reg-box__input_pass {
  margin-bottom: 6px;
}
.pa-reg-box__restore-pass {
  margin-left: 16px;
  line-height: 18px;
  font-size: 12px;
  color: #000000;
  align-self: flex-start;
  margin-bottom: 17px;
}
.pa-reg-box__restore-pass:hover {
  text-decoration: underline;
}
.pa-reg-box__btn-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 360px) {
  .pa-reg-box__btn-box {
    flex-direction: column;
  }
}
.pa-reg-box__btn {
  background-color: #68B905;
  padding: 8px 36px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border-radius: 5px;
  border: none;
  color: #ffffff;
  margin-bottom: 6px;
  text-align: center;
  flex-basis: 100%;
}
.pa-reg-box__btn:hover {
  background-color: #7fc32a;
  cursor: pointer;
}
.pa-reg-box__btn_transparent {
  background-color: transparent;
  border: 1px solid #68B905;
  color: #68B905;
}
.pa-reg-box__btn_transparent:hover {
  background-color: transparent;
  color: #7fc32a;
  border-color: #7fc32a;
}
.pa-reg-box__legal {
  text-decoration-line: underline;
  color: #7B7B7B;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}
.pa-reg-box__legal:hover {
  text-decoration: none;
}

.banners-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 0;
}
.banners-box > a {
  display: flex;
  margin: 2.5px;
}
.banners-box > a > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  padding: 40px 0;
  background-color: #202D10;
}
.footer__logo-box {
  display: flex;
  align-items: center;
}
.footer__logo {
  margin-right: 10px;
}
.footer__title {
  color: #ffffff;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
}
.footer__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
}

@keyframes blink {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(1.5px);
  }
  50% {
    transform: translateX(-1.5px);
  }
  100% {
    transform: translateX(0);
  }
}
/* for lost+password */
.recover {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 0 0;
}
.recover__title {
  font-weight: 400;
  line-height: 21px;
  font-size: 14px;
  color: #000000;
  margin-bottom: 9px;
}
.recover__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 348px;
}
.recover__input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 5px;
  border: 1px solid #C7C7C7;
}
.recover__input::-moz-placeholder {
  color: #C7C7C7;
  font-size: 14px;
}
.recover__input::placeholder {
  color: #C7C7C7;
  font-size: 14px;
}
.recover__input_log {
  margin-bottom: 17px;
}
.recover__input_cap {
  margin-bottom: 6px;
}
.recover__captcha-box {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80px;
  margin-bottom: 9px;
}
.recover__captcha {
  width: 100%;
  max-width: 300px;
}
.recover__error {
  color: #DC000A;
  margin: 0 0 17px 16px;
  font-weight: 400;
  font-size: 14px;
  align-self: flex-start;
  height: 18px;
  line-height: 18px;
  animation: blink 0.2s 2;
}
.recover__btn {
  background-color: #68B905;
  padding: 8px 36px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border-radius: 5px;
  border: none;
  color: #ffffff;
  text-align: center;
}
.recover__btn:hover {
  cursor: pointer;
  background-color: #7fc32a;
}

/* for lost+password_ok */
.recover-ok {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 0 0;
}
.recover-ok__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 17px;
}
.recover-ok__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  margin-bottom: 30px;
  color: #000000;
}
.recover-ok__btn {
  display: flex;
  align-items: center;
  color: #000000;
}
.recover-ok__btn-icon {
  margin-right: 4px;
}
.recover-ok__btn-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
}
.recover-ok__btn:hover > .recover-ok__btn-icon {
  transform: translateX(-2px);
  transition: 0.4s;
}
.recover-ok__btn:active > .recover-ok__btn-icon {
  transform: translateX(0px);
  transition: 0.4s;
}/*# sourceMappingURL=style.css.map */