/* Stepper container */

.titleText {
  color: #f7c953;
}
.stepperContainer {
  position: relative;
  justify-content: space-between;
  margin-bottom: 40px;
}
/* .stepperContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */
/* Progress bar */
.progressBar {
  position: absolute;
  top: 37px;
  left: 0;
  width: 100%;
  height: 16px;
  background-color: #dee2e6;
  z-index: 1;
  border-radius: "12px 0px 0px 12px";
}

.progressBarFill {
  height: 16px;
  background-color: #ffba00;
  z-index: 2;
  border-radius: "12px 0px 0px 12px";
}
.progressBar,
.progressBarFill {
  box-sizing: border-box;
}

.stepItem {
  z-index: 3;
  position: relative;
  width: 100%;
  text-align: center;
}

/* Step circle */
.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border: 2px solid #dee2e6;
  font-size: 18px;
  margin-top: 20px;
}
.activeCircle {
  background-color: #ffba00;
  color: white;
  border: 2px solid #ffba00;
}

.activeStep {
  color: #ffba00;
  font-weight: bold;
}

/* List group item */
.listGroupItemActive {
  background-color: #ffba00;
  border-color: #ffba00;
  color: white;
}

/* Card body */
.cardBody {
  min-height: 200px;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  padding: 20px;
}
.hiddenStep {
  display: none;
}
/* Button styles */
.btnSecondary {
  background-color: #6c757d;
  border-color: #6c757d;
}

.btnPrimary {
  background-color: #ffba00;
  border-color: #ffba00;
}
/* 
.custom-checkbox-input {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.custom-checkbox-input:checked::after {
  content: "✔";
  color: white;
  font-size: 14px;
  position: absolute;
  left: 3px;
  top: 1px;
}

.custom-checkbox-label {
  font-weight: bold;
} */
.customCheckboxInput {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 50%; /* Make it a circle */
  cursor: pointer;
  position: relative;
  outline: none; /* Remove default outline */
  background-color: transparent; /* Ensure transparent background */
}

.customCheckboxInput:checked::after {
  content: "✔";
  width: 12px;
  height: 12px;
  background-color: "#f7c953"; /* Yellow color */
  border-radius: 50%; /* Make it a circle */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* Center the circle */
}

.customCheckboxLabel {
  font-weight: bold;
}

.registerContainer {
  padding: 80px 50px;
  background-color: #fafafa;
  border: none;
}

.formGroup {
  margin-bottom: 1.5rem;
}

.formControl {
  border-radius: 30px;
  padding: 10px 20px;
}

.formControl::placeholder {
  color: #c4c4c4;
}

.textDanger {
  color: #ff0000;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.btnPrimary {
  background-color: #f7c953;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 1.25rem;
  color: #ffffff;
}

.btnPrimary:disabled {
  background-color: #f7c953;
  opacity: 0.6;
}

.errorMessage {
  background-color: #ffebeb;
  color: #ff0000;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.inputIcon {
  position: relative;
}

.icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #c4c4c4;
}

.inputIcon input {
  padding-right: 40px;
}

.socialCircle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f0f0f0;
  border: 2px solid #ddd;
  font-size: 24px;
}
.socialLine {
  position: absolute;
  top: 50%;
  left: 60px;
  right: 60px;
  height: 2px;
  width: 80px;
  background-color: #ddd;
}
