/* Mobile Stepper Form Styles */
.mobile-stepper-form {
  display: none;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  width: 100%;
}

/* Show stepper form on mobile, hide desktop form */
@media (max-width: 768px) {
  .mobile-stepper-form {
    display: block;
  }
}

/* Progress Bar */
.progress-container {
  margin-bottom: 32px;
}

.progress-bar-wrapper {
  width: 100%;
  height: 6px;
  background: #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(to right, #8B5CF6, #3B82F6);
  transition: width 0.3s ease;
  border-radius: 10px;
  width: 0%;
}

.progress-text {
  font-size: 14px;
  color: #666;
  text-align: center;
  font-weight: 500;
  margin: 0;
}

/* Step Container */
.step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.step.active {
  display: block;
}

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

/* Step Title */
.step-title {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  margin-bottom: 16px;
  text-align: left;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Buttons */
.stepper-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.stepper-btn {
  flex: 1;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
}

.stepper-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-back {
  background: #e5e7eb;
  color: #1a1a1a;
}

/* .btn-back:hover:not(:disabled) {
  background: #d1d5db;
} */

.btn-next {
  background: linear-gradient(135deg, #ff7b45, #e55a2b);
  color: #fff;
}

/* .btn-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 83, 0, 0.3);
} */

.btn-next:disabled {
  background: #ffc9b3;
  transform: none;
  box-shadow: none;
}

.btn-sign {
  background: linear-gradient(135deg, #ff7b45, #e55a2b);
  opacity: 0;
  position: absolute;
  top: -100px;
  color: #fff;
}

/* Success Message */
.success-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-message.active {
  display: block;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.success-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  margin-top: 0;
}

.success-text {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}