.reset-step {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.reset-step--active {
  display: flex;
}

.reset-helper {
  font-size: 11px;
  color: var(--text-600);
  text-align: center;
}

.token-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.token-inputs input {
  width: 42px;
  height: 46px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #f3f6fc;
}

.token-inputs input:focus {
  outline: none;
  border-color: rgba(0, 93, 147, 0.85);
  box-shadow: 0 0 0 2.5px rgba(0, 93, 147, 0.18);
}

.reset-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-600);
}

.reset-actions button {
  border: none;
  background: none;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.reset-actions button[disabled] {
  color: rgba(100, 109, 122, 0.6);
  cursor: not-allowed;
}

.reset-actions span {
  font-weight: 600;
}

.auth__submit.is-loading {
  opacity: 0.8;
  position: relative;
}

.auth__submit.is-loading::after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-top-color: #fff;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  animation: askoraSpin 0.9s linear infinite;
}

@keyframes askoraSpin {
  to {
    transform: rotate(360deg);
  }
}
