body {
  background-color: #f8f9fa;
}

.registration-container {
  max-width: 800px;
  margin: 40px auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.progress-bar-container {
  margin-bottom: 40px;
}

.step-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.step-progress:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #e9ecef;
  z-index: 1;
  transform: translateY(-50%);
}

.step {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e9ecef;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  color: #6c757d;
  font-weight: bold;
}

.step.active {
  background-color: #198754;
  color: white;
}

.step.completed {
  background-color: #198754;
  color: white;
}

.step-label {
  position: absolute;
  top: 100%;
  margin-top: 10px;
  font-size: 12px;
  color: #6c757d;
  white-space: nowrap;
}

.step.active .step-label,
.step.completed .step-label {
  color: #212529;
  font-weight: bold;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.form-title {
  margin-bottom: 30px;
  text-align: center;
  color: #343a40;
}
