
.form-label {
    font-weight: 500;
    color: #333;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}
.form-group-custom {
    margin-bottom: 1.5rem;
}
.form-group-custom label {
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-group-custom label i {
    color: #007bff;
}
.text-danger {
    color: #dc3545;
}
.input-icon {
    position: relative;
}


.select2-container .select2-selection--single {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px;
}
.step {
    display: none;
}
.step.active {
    display: block;
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}

.was-validated .form-check-input:invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
}
/* Styling for the progress bar container */
.progress-container {
    width: 100%;
    margin: 20px auto;
}

/* Progress bar style */
.progress {
    position: relative;
    height: 30px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #2873b9;
    color: white;
    font-weight: bold;
    transition: width 0.3s ease;
}

/* Steps titles */
.steps {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.step {
    color: #888;
}

.step.active {
    color: #2873b9;
}
.back-btn{
    color: #056CB5;
    font-size: 1.3rem;
}
.back-btn:hover{
    color: #056CB5;
}
.back-btn:before {
    content: ' \21D0';
    color: #056CB5;
    padding-right: 5px;
  }