.containerItems {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.card-form {
  margin: 3rem 0 5rem;
  padding: 20px;
  /* border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

/* .card-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 10px 24px rgba(0, 0, 0, 0.1);
} */

.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
  flex: 1;
}

.step span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  transition: color 0.3s ease;
}

.step .liner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ccc;
  z-index: 0;
  transform: translateY(-50%);
}

.step.active .liner {
  background-color: #3661fc;
}

.step.active span {
  color: #3661fc;
}

.line {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s ease;
  z-index: 1;
}

.dot.active {
  background-color: #3661fc;
}

.dot-move {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background-color: #3661fc;
  z-index: 0;
  transition: width 0.3s ease;
}

.slider-ctr {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider-form {
  display: none;
  /* padding: 20px; */
  /* background-color: #f4f4f4; */
  /* border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.slider-form.active {
  display: block;
}
/*Check-input*/
.switch-container {
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-check-input {
  width: 30px;
  height: 15px;
  border-radius: 10px;
  background-color: #ccc;
  border: 2px solid #ccc;
  position: relative;
  appearance: none;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s ease-in-out;
}
.form-check-input:checked {
  background-color: #009cff !important;
  border-color: #009cff !important;
}
.form-check-input::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
}
.form-check-input:checked::before {
  transform: translateX(15px);
}
.switch-label {
  font-size: 10px;
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .step {
    margin-bottom: 20px;
  }

  .line {
    flex-direction: column;
    align-items: center;
  }

  .slider-ctr {
    padding: 10px;
  }

  .containerItems {
    padding: 0;
  }
  .steps{
    display: none;
  }
}