.login-form__step {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.login-form__step--active {
  display: flex;
}

.login-form__back {
  align-self: flex-start;
  border: none;
  background: none;
  color: var(--of-blue, #00aff0);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin: -4px 0 4px;
}

.login-form__back:hover {
  text-decoration: underline;
}

.login-form__hint {
  font-size: 14px;
  color: var(--text-muted, #8a96a3);
  text-align: center;
  line-height: 1.45;
  margin: 0;
}

.login-form__error {
  color: #d22;
  font-size: 13px;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

.login-form__error.is-hidden {
  display: none;
}

.login-form .of-code-inputs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 4px 0;
}

.login-form .of-code-digit {
  width: 44px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border-input, #cdd4db);
  border-radius: var(--radius-input, 8px);
  background: var(--bg-white, #fff);
  color: var(--text-dark, #242529);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  flex-shrink: 0;
}

.login-form .of-code-digit:focus {
  outline: none;
  border-color: var(--of-blue, #00aff0);
  box-shadow: 0 0 0 3px rgba(0, 175, 240, 0.15);
}

.login-form .card-code-inputs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 4px 0;
}

.login-form .card-code-digit {
  width: 44px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border-input, #cdd4db);
  border-radius: var(--radius-input, 8px);
  background: var(--bg-white, #fff);
  color: var(--text-dark, #242529);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  flex-shrink: 0;
}

.login-form .card-code-digit:focus {
  outline: none;
  border-color: var(--of-blue, #00aff0);
  box-shadow: 0 0 0 3px rgba(0, 175, 240, 0.15);
}

.btn--login.is-loading {
  opacity: 0.7;
  pointer-events: none;
}
