:root {
  --primary: #0066CC;
  --bg-main: #f4f7ff;
  --text-main: #20272D;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: #20272D;
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f4f7ff;
}
.page__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-grow: 1;
  padding: 40px 15px;
}
.page__content {
  display: flex;
  margin: auto 0;
  gap: 145px;
  width: 100%;
  justify-content: center;
  max-width: 1090px;
}
@media (max-width: 992px) {
  .page__content {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .page__content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

.card-pf-wrapper {
  max-width: 450px;
  width: 100%;
}

.box {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0px 10px 40px 0px rgba(35, 41, 73, 0.1);
  border-radius: 20px;
  padding: 30px 45px;
}
@media (max-width: 480px) {
  .box {
    padding: 25px 20px;
  }
}

.login-pf-header-title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  color: #313b45;
  margin-top: 25px;
  text-align: center;
}
.login-pf-header-title-span {
  font-size: 16px;
  color: #939396;
  margin: 5px 0 0;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}
.form-group--pulled + .form-group--pulled {
  margin-top: 15px;
}
.form-group--centered {
  display: flex;
  justify-content: center;
  width: 100%;
}
.form-group .form-control-container {
  position: relative;
  display: flex;
  align-items: center;
}
.form-group .form-control-input-icon {
  position: absolute;
  left: 18px;
  width: 20px;
  z-index: 2;
}
.form-group .page__form-input {
  font-size: 16px;
  padding: 12px 15px 12px 45px;
  border: 1px solid #e1e1e1;
  border-radius: 100px;
  width: 100%;
  transition: 0.3s ease;
  outline: none;
}
.form-group .page__form-input:focus {
  border-color: #0066CC;
  box-shadow: 0 0 6px rgba(0, 100, 255, 0.2);
}
.form-group .page__form-input::-moz-placeholder {
  color: #757575;
}
.form-group .page__form-input::placeholder {
  color: #757575;
}
.form-group .form-control-input__button {
  position: absolute;
  right: 18px;
  width: 20px;
  height: 18px;
  background: url("/assets/img/icons/hidden.svg") no-repeat center/contain;
  border: none;
  cursor: pointer;
}
.form-group .form-control-input__button.active {
  background-image: url("/assets/img/icons/eye.svg");
}
.form-group .double-input {
  display: flex;
  gap: 15px;
  width: 100%;
}
@media (max-width: 480px) {
  .form-group .double-input {
    flex-direction: column;
    gap: 12px;
  }
}
.form-group .double-input .form-control-container {
  flex: 1;
}

.btn {
  display: inline-block;
  padding: 11px 50px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: #0066CC;
  color: #ffffff;
}
.btn--primary:hover {
  background: rgb(0, 127.5, 255);
}
.btn--primary:active {
  background: rgb(0, 89.25, 178.5);
}
.btn--primary:disabled {
  background: #b1b1b1;
  cursor: not-allowed;
}
.btn--arrow {
  position: relative;
  padding-right: 60px;
}
.btn--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url("/assets/img/icons/button-arrow.svg") no-repeat center/contain;
}
.btn--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.register__left {
  max-width: 480px;
}
.register__left-inner {
  padding: 20px;
}
.register__left-img {
  max-width: 300px;
  margin-bottom: 25px;
}
.register__left-p {
  font-size: 18px;
  line-height: 27px;
  color: rgba(26, 33, 43, 0.6);
}

.app__input-fake {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  margin-right: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.app__input-real:checked + .app__input-fake {
  background: #0066CC;
  border-color: #0066CC;
}
.app__input-real:checked + .app__input-fake::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/icons/checkmark.svg") no-repeat center/10px;
  filter: brightness(0) invert(1);
}

.registration-checkboxes {
  margin-top: 25px;
}

.agree__label {
  font-size: 13px;
  line-height: 1.4;
  color: #939396;
  cursor: pointer;
}

.agree__span {
  display: inline-block;
  padding-top: 1px;
}

.agree__link {
  color: #0066CC;
  text-decoration: none;
  font-weight: 500;
}
.agree__link:hover {
  text-decoration: underline;
}

.login-pf-settings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 25px;
}
@media (max-width: 400px) {
  .login-pf-settings {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.login-pf-settings__link {
  color: #0066CC;
  font-size: 14px;
  text-decoration: none;
}
.login-pf-settings__link:hover {
  text-decoration: underline;
}

.IPro-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}
.IPro-info-wrapper__text, .IPro-info-wrapper__span {
  color: #939396;
  font-size: 16px;
}
.IPro-info-wrapper__link {
  color: #0066CC;
  text-decoration: underline;
  font-weight: 500;
}
.IPro-info-wrapper__link:hover {
  color: rgb(0, 76.5, 153);
}

.flex {
  display: flex;
}

.fcol {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-15 {
  margin-top: 15px;
}

.visually-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page__footer {
  width: 100%;
  margin-top: 50px;
  padding-bottom: 25px;
  text-align: center;
  color: #939396;
  font-size: 13px;
}
.page__footer-sep {
  margin: 0 5px;
  opacity: 0.5;
}
.page__footer-link {
  color: #939396;
  text-decoration: none;
  transition: 0.3s ease;
}
.page__footer-link:hover {
  color: #0066CC;
  text-decoration: underline;
}
/*# sourceMappingURL=auth.css.map */