.reg-steps__list {
  display: flex;
  justify-content: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.reg-steps__list::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #dee2e6;
  z-index: 0;
}
.reg-steps__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.reg-steps__badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dee2e6;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  margin-bottom: .4rem;
  transition: background .2s, color .2s;
}
.reg-steps__label {
  font-size: .75rem;
  color: #6c757d;
  transition: color .2s;
}
.reg-steps__item.is-active .reg-steps__badge {
  background: var(--bs-primary, #007bff);
  color: #fff;
}
.reg-steps__item.is-active .reg-steps__label {
  color: var(--bs-primary, #007bff);
  font-weight: 600;
}
.reg-steps__item.is-completed .reg-steps__badge {
  background: #198754;
  color: #fff;
}
.reg-steps__item.is-completed .reg-steps__label {
  color: #198754;
}

.birthdate-picker.is-invalid input,
[data-ps-ref="birthdate-picker"].is-invalid input {
  border-color: #dc3545;
}
