
.step_form_container {
  display: flex;
  background: #06397066;
  border-radius: 10px;
  padding: 10px;
}

.step_form_inner_container {
  display: block;
  width: 100%;
}

.step_form_header {
  display: flex;
}

.step_form_progress_indicator_container {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 1px;
  position: absolute;
  top: -57px;
}

.step_form_progress_indicator {
  cursor: pointer;
  display: flex;
  background: black;
  color: white;
  padding: 10px;
  min-width: 133px;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  flex-direction: column;
  gap: 5px;
}

.step_form_progress_indicator_finished {
  background: green;
  color: white;
}

.step_form_progress_indicator_finished .step_form_progress_bar {
  background: white;
}

.step_form_progress_indicator_active {
  background: lightgray;
  color: black;
}

.step_form_progress_indicator_number {
  display: flex;
  background: gray;
  padding: 3px;
  width: 19px;
  border-radius: 50%;
  height: 19px;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
}

.step_form_title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.step_form_progress_bar {
  display: flex;
  background: green;
  height: 5px;
  width: 100%;
  border-radius: 10px;
}

.step_form_content_container {
  display: flex;
  background: lightgray;
  flex-direction: column;
  position: relative;
  margin-top: 69px;
  padding: 5px;
  padding-top: 10px;
  border-radius: 10px;
  border: 1px solid black;
}

.step_form_content {
  display: none;
  flex-direction: column;
  min-width: 847px;
}

.step_form_navigation_container {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.step_form_nav_btn {
  cursor: pointer;
  border-radius: 20px;
}

.step_form_nav_btn_back {
  background: black;
}

.step_form_nav_btn_next {
  background: olivedrab;
}

.step_form_nav_btn div {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 5px;
  transition: 1s ease-in;
}

.step_form_nav_btn:hover div {
  justify-content: space-between;
  transition: 1s ease-in;
}
