/* Signup Flow Styles */
.signup-flow {
  display: flex;
  gap: 15px;
  margin-top: 65px;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.signup-card {
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(16, 14, 26, 0.55);
  border: 1px solid rgba(220, 220, 240, 0.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  width: 347px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s ease;
  opacity: 0.6;
  position: relative;
  flex-direction: row;
}

.signup-card.active {
  opacity: 1 !important;
  border-color: rgba(160, 120, 255, 0.6) !important;
  box-shadow: 0 0 20px rgba(160, 120, 255, 0.4), 0 20px 50px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(-2px) !important;
}

.signup-card:not(.active)::after {
  content: '🔒';
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 12px;
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.6);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(160, 120, 255, 0.18);
  border: 1px solid rgba(160, 120, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8e9ff;
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-wrap: nowrap;
}

.step-title {
  color: #e8e9ff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 90px;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
  line-height: 1.2;
}

#completion {
  width: 550px;
  height: auto;
  min-height: 70px;
}

#completion .step-content {
  align-items: center;
}

#completion .step-title {
  max-width: 480px;
  font-size: 13px;
  min-width: 200px;
  white-space: nowrap;
  overflow: visible;
}

.signup-card .step-input {
  flex: 1;
  min-width: 0;
  width: 360px !important;
  height: 32px !important;
  padding: 0 12px !important;
  background: rgba(16, 14, 26, 0.8) !important;
  border: 1px solid rgba(220, 220, 240, 0.15) !important;
  border-radius: 6px !important;
  color: #e8e9ff !important;
  font-size: 13px !important;
  line-height: 1 !important;
  transition: all 0.3s ease;
  box-sizing: border-box !important;
  margin-top: 4px !important;
  transform: translateY(2px);
}

.signup-card .step-input::placeholder {
  color: rgba(232, 233, 255, 0.5) !important;
}

.signup-card .step-input:focus {
  outline: none !important;
  border-color: rgba(220, 220, 240, 0.25) !important;
  background: rgba(16, 14, 26, 0.9) !important;
}

.step-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  background: rgba(160, 120, 255, 0.15);
  border: 1px solid rgba(160, 120, 255, 0.25);
  border-radius: 50%;
  color: #e8e9ff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-btn:hover:not(:disabled) {
  background: rgba(160, 120, 255, 0.25);
  border-color: rgba(160, 120, 255, 0.4);
}

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

.step-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  font-size: 14px;
  font-weight: bold;
}

/* Card-specific widths */
#step2 {
  width: 380px;
}

#step3 {
  width: 380px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .signup-flow {
    flex-direction: column;
    align-items: center;
  }
  
  .signup-card {
    width: 100%;
    max-width: 350px;
  }
}