.auth {
  position: relative;
  padding-top: 0px;
}

.auth__grid {
  display: grid;
  grid-template-columns: 243px 1fr 243px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100svh;
}

.auth__side {
  border-radius: 4px;
}

.auth__side--left {
  background: url(/assets/img/Frame 497.png) center/cover no-repeat;
}

.auth__side--right {
  background: url(/assets/img/log_r.png) center/cover no-repeat;
}

.auth__container {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  height: 100%;
}

.auth__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
}

.auth-back {
  position: absolute;
  top: 60px;
}

.auth__title {
  margin-bottom: 40px;
}

.input-box {
  margin-bottom: 20px;
}

.auth {
  overflow: hidden;
}

.auth__view {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  height: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.auth-form {
  width: 100%;
}

.auth__view.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: auth-fade 0.45s ease both;
          animation: auth-fade 0.45s ease both;
}

.auth__view--signup.is-active {
  -webkit-animation: auth-slide 0.5s ease both;
          animation: auth-slide 0.5s ease both;
}

.auth__view--reset.is-active {
  -webkit-animation: auth-zoom 0.45s ease both;
          animation: auth-zoom 0.45s ease both;
}

@media (max-width: 840px) {
  .icon {
    padding: 8px;
    margin: 0px;
  }
}
.auth-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.auth-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.auth-inline .auth__link {
  margin-bottom: 0px;
}

.auth__view--reset .auth__desc {
  margin-bottom: 40px;
}

.auth__panel {
  width: 100%;
}

.auth__view--sent .auth__title, .auth__view--change .auth__title, .auth__view--changed .auth__title {
  margin-bottom: 20px;
}
.auth__view--sent .auth__desc, .auth__view--change .auth__desc, .auth__view--changed .auth__desc {
  margin-bottom: 40px;
}
.auth__view--sent .to-login, .auth__view--change .to-login, .auth__view--changed .to-login {
  margin-bottom: 8px;
}

.auth__link {
  background: none;
  border: none;
  color: #796f64;
  text-decoration: underline;
  padding: 6px 0;
  cursor: pointer;
  color: var(--Neutrals-neutral-800, #796f64);
  font-family: Mariupol;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 114.286% */
  letter-spacing: -0.14px;
  text-decoration: none;
  margin-bottom: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.btn {
  width: 100%;
}

.auth__view--login .do-login {
  margin-bottom: 8px;
}
.auth__view--login .to-signup {
  margin-bottom: 40px;
}
.auth__view--login .h5_title {
  margin-bottom: 20px;
}
.auth__view--login .auth-row .btn {
  width: 100%;
}

.auth-toggle {
  position: absolute;
  right: 8px;
  top: 10px;
  background: none;
  border: none;
  padding: 4px;
  color: #796f64;
}

.auth-toggle svg {
  width: 16px;
  height: 16px;
}

.auth-toggle img {
  width: 16px;
  height: 16px;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}

.auth-toggle.active img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.6;
}

@-webkit-keyframes auth-fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes auth-fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes auth-slide {
  from {
    opacity: 0;
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes auth-slide {
  from {
    opacity: 0;
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes auth-zoom {
  from {
    opacity: 0;
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes auth-zoom {
  from {
    opacity: 0;
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (max-width: 1200px) {
  .auth__grid {
    grid-template-columns: 243px 1fr 243px;
  }
}
@media (max-width: 980px) {
  .auth__grid {
    gap: 24px;
  }
}
.btn {
  text-wrap: nowrap;
}

.auth-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 6px;
  -webkit-transition: outline-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: outline-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: outline-color 0.2s ease, box-shadow 0.2s ease;
  transition: outline-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  margin-bottom: 20px;
}

.auth-check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  pointer-events: none;
}

.auth-check small {
  color: var(--Neutrals-neutral-800, #796F64);
  font-family: Mariupol;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 116.667% */
  position: relative;
  padding-left: 28px;
  display: inline-block;
}

.auth-check small::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  border: 1px solid var(--Neutrals-neutral-400, #c9c5c1);
  background: #fff;
  -webkit-transition: border-color 0.25s ease, background-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
}

.auth-check small::after {
  content: "";
  position: absolute;
  left: 4.3px;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--Neutrals-neutral-800, #796f64);
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  opacity: 0;
  -webkit-transition: opacity 0.22s ease, -webkit-transform 0.22s ease;
  transition: opacity 0.22s ease, -webkit-transform 0.22s ease;
  transition: opacity 0.22s ease, transform 0.22s ease;
  transition: opacity 0.22s ease, transform 0.22s ease, -webkit-transform 0.22s ease;
}

.auth-check input:checked + small::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.auth-check input:checked + small::before {
  border-color: var(--Neutrals-neutral-600, #AEA8A2);
}

.auth-check input:hover + small::before {
  background: var(--Neutrals-neutral-100, #F1F0EF);
}

@media (max-width: 950px) {
  .auth__grid {
    grid-template-columns: 1fr;
  }
  .auth__side {
    display: none;
  }
  .auth__container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .auth-row {
    gap: 8px;
  }
}