/* Registration wizard — Rapido swMain layout, AANYA home theme (#f15c22) */

.auth-wizard {
  margin-bottom: 28px;
}

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

.auth-wizard .swMain > ul {
  display: flex;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  gap: 0;
  border-bottom: 1px solid var(--auth-border);
}

.auth-wizard .swMain > ul > li {
  flex: 1;
  text-align: center;
  position: relative;
}

.auth-wizard .swMain > ul > li > a {
  display: block;
  padding: 12px 8px 16px;
  text-decoration: none;
  color: var(--auth-muted);
  pointer-events: none;
}

.auth-wizard .swMain .stepNumber {
  width: 36px;
  height: 36px;
  line-height: 34px;
  border-radius: 50%;
  border: 2px solid var(--auth-border);
  background: var(--auth-panel-soft);
  color: var(--auth-muted);
  font-weight: 700;
  font-size: 15px;
  margin: 0 auto 8px;
  transition: all 0.2s ease;
}

.auth-wizard .swMain .stepDesc {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--auth-muted);
  line-height: 1.3;
}

.auth-wizard .swMain .stepDesc small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}

.auth-wizard .swMain > ul > li.selected .stepNumber,
.auth-wizard .swMain > ul > li.done .stepNumber {
  border-color: #f15c22;
  background: #f15c22;
  color: #fff;
}

.auth-wizard .swMain > ul > li.selected .stepDesc,
.auth-wizard .swMain > ul > li.done .stepDesc {
  color: var(--auth-text);
}

.auth-wizard .swMain > ul > li.done .stepNumber {
  background: #fff;
  color: #f15c22;
}

.auth-wizard .progress {
  height: 4px;
  margin-bottom: 24px;
  background: var(--auth-border);
  border-radius: 2px;
  overflow: hidden;
}

.auth-wizard .progress-bar {
  background: linear-gradient(90deg, #f15c22, #ff8a5c);
  transition: width 0.35s ease;
}

.auth-panel--wizard .auth-btn {
  background: linear-gradient(135deg, #f15c22 0%, #e04a10 100%);
}

.auth-panel--wizard .profile-avatar-upload .btn-primary,
.auth-panel--wizard .profile-avatar-crop-modal .btn-primary {
  background: #f15c22;
  border-color: #e04a10;
}

.auth-panel--wizard .profile-avatar-upload .btn-light-grey {
  border-color: var(--auth-border);
  color: var(--auth-text);
}

@media (max-width: 767px) {
  .auth-wizard .swMain .stepDesc small {
    display: none;
  }
  .auth-wizard .swMain .stepDesc {
    font-size: 11px;
  }
}
