/* auth forms styles start */
/* login.php + registeration.php: Login and Registration Forms */
.wt-lf,
.wt-rf {
  max-width: 520px;
}
.wt-lf__row,
.wt-rf__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.wt-lf__label,
.wt-rf__label {
  font-size: 14px;
  opacity: 0.8;
}
.wt-lf .wt-lf__input,
.wt-profile .wt-lf__input,
.wtco .wt-lf__input,
.wt-rf .wt-rf__input {
  border: 0;
  border-bottom: 1px solid var(--wt-color-text-34);
  background: transparent!important;
  border-radius: 0;
  padding: 10px 0;
  font-size: 16px;
  outline: none;
  width: 100%;
  color: var(--wt-color-text);
  transition: border-color 0.2s ease, border-bottom-width 0.2s ease;
}
.wt-lf .wt-lf__input:hover,
.wt-profile .wt-lf__input:hover,
.wtco .wt-lf__input:hover,
.wt-rf .wt-rf__input:hover {
  border-bottom-color: rgba(45, 42, 45, 0.62);
}
.wt-lf .wt-lf__input:focus,
.wt-profile .wt-lf__input:focus,
.wtco .wt-lf__input:focus,
.wt-rf .wt-rf__input:focus {
  border-bottom-color: var(--wt-color-accent);
}
.wt-lf__actions,
.wt-rf__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}
.wt-lf__btn,
.wt-rf__btn {
  padding: 12px 24px;
  border-radius: 0;
  border: 1px solid var(--wt-black);
  background: var(--wt-black);
  color: var(--wt-white);
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--wt-transition-ui);
}
.wt-lf__btn:hover,
.wt-rf__btn:hover {
  background: var(--wt-bg-base);
  color: var(--wt-black);
}
.wt-lf__btn--ghost,
.wt-rf__btn--ghost {
  background: var(--wt-bg-base);
  color: var(--wt-black);
  border-color: var(--wt-black);
}
.wt-lf__btn--ghost:hover,
.wt-rf__btn--ghost:hover {
  background: var(--wt-black);
  color: var(--wt-white);
}
.wt-lf__status,
.wt-rf__status {
  font-size: 14px;
  margin-bottom: 10px;
}
.wt-lf__status.is-ok,
.wt-rf__status.is-ok {
  color: var(--wt-black);
}
.wt-lf__status.is-err,
.wt-rf__status.is-err {
  color: var(--wt-black);
}
.wt-lf__hint,
.wt-rf__hint {
  font-size: 12px;
  opacity: 0.65;
  margin-top: 6px;
  line-height: 1.3;
}
.wt-lf__step,
.wt-rf__step {
  display: none;
}
.wt-lf__step.is-active,
.wt-rf__step.is-active {
  display: block;
}

@media (max-width: 1024px) {
  .wt-lf,
  .wt-rf {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .wt-lf__actions,
  .wt-rf__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wt-lf__btn,
  .wt-rf__btn {
    width: 100%;
    justify-content: center;
  }
}

/* auth forms styles end */
