/* ============================================
   STEPPER STYLES
   ============================================ */

.stepper-container {
  width: 100%;
  background: rgba(13, 13, 13, 0.98);
  border: 1px solid rgba(243, 228, 192, 0.15);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ============================================
   STEP INDICATORS
   ============================================ */

.stepper-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(243, 228, 192, 0.1);
}

.step-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-indicator-wrapper {
  display: flex;
  align-items: center;
}

.step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.step-indicator.active {
  background: #F3E4C0;
  color: #000000;
  box-shadow: 0 0 20px rgba(243, 228, 192, 0.4);
}

.step-indicator.complete {
  background: #F3E4C0;
  color: #000000;
  cursor: pointer;
}

.step-indicator.complete:hover {
  background: #E6D4A8;
}

.active-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000000;
}

.step-number {
  font-size: 0.875rem;
  font-weight: 600;
}

.check-icon {
  width: 16px;
  height: 16px;
  color: #000000;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: #2a2a2a;
  margin: 0 0.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.step-connector.complete {
  background: #F3E4C0;
}

/* ============================================
   STEP CONTENT
   ============================================ */

.stepper-content {
  min-height: 200px;
  padding: 1rem 0;
}

.step-content-wrapper {
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.step-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.step-fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ============================================
   FORM FIELDS
   ============================================ */

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(243, 228, 192, 0.2);
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 0.9375rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.2s ease;
}

.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-field input:focus {
  outline: none;
  border-color: #F3E4C0;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 2px rgba(243, 228, 192, 0.2);
}

.form-field-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.375rem;
}

/* ============================================
   LOGIN FORM SPECIFIC
   ============================================ */

.auth-form-login {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: -0.5rem;
}

/* ============================================
   FOOTER NAVIGATION
   ============================================ */

.stepper-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(243, 228, 192, 0.1);
}

.stepper-nav {
  display: flex;
  align-items: center;
}

.stepper-nav.justify-between {
  justify-content: space-between;
}

.stepper-nav.justify-end {
  justify-content: flex-end;
}

.stepper-btn {
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
}

.stepper-btn-back {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stepper-btn-back:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
}

.stepper-btn-next {
  background: #F3E4C0;
  color: #000000;
  box-shadow: 0 4px 12px rgba(243, 228, 192, 0.3);
  min-width: 140px;
}

.stepper-btn-next:hover {
  background: #E6D4A8;
  box-shadow: 0 6px 20px rgba(243, 228, 192, 0.4);
  transform: translateY(-1px);
}

.stepper-btn-next:active {
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .stepper-container {
    padding: 1.5rem;
  }
  
  .step-connector {
    width: 30px;
  }
  
  .step-indicator {
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }
  
  .step-title {
    font-size: 1.125rem;
  }
  
  .stepper-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .step-connector {
    width: 20px;
    margin: 0 0.25rem;
  }
  
  .step-indicator {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  
  .active-dot {
    width: 8px;
    height: 8px;
  }
  
  .check-icon {
    width: 12px;
    height: 12px;
  }
}

