/* assets/css/login.css */
/* Дополнительные стили для страниц входа и восстановления */

.highlight {
  color: #f5d742;
}

.btn-step-primary {
  background: #f5d742;
  color: #0b0e12;
  padding: 0.9rem;
  border-radius: 60px;
  border: none;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.btn-step-primary:hover {
  background: #ffe566;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 215, 66, 0.25);
}

.btn-step-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn-step-secondary {
  background: transparent;
  color: #b2c7de;
  border: 1px solid #2a3440;
  padding: 0.9rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  margin-top: 0.8rem;
}

.btn-step-secondary:hover {
  background: #1a222c;
  color: #f0f6ff;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-indicator .step-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1f2935;
  color: #7e96b2;
  font-weight: 700;
  font-size: 0.85rem;
}

.step-indicator .step-dot.active {
  background: #f5d742;
  color: #0b0e12;
}

.step-indicator .step-dot.done {
  background: #4ade80;
  color: #0b0e12;
}

.step-indicator .step-line {
  flex: 1;
  height: 2px;
  background: #1f2935;
}

.step-indicator .step-line.done {
  background: #4ade80;
}