/* application pages progress bar  */
.application-progress {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 18px;
}

.application-progress-fill {
    height: 100%;
    background: #0da487; /* same green used by your theme */
    border-radius: 50px;
    transition: width 0.3s ease;
}

.application-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: center;
}

.application-steps .step {
    flex: 1;
    position: relative;
}

.application-steps .step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 600;
}

.application-steps .step.active .step-circle {
    background: #0da487;
    color: #fff;
}

.application-steps .step.completed .step-circle {
    background: #0da487;
    color: #fff;
}

.application-steps .step-label {
    font-size: 13px;
    color: #6c757d;
}

.application-steps .step.active .step-label,
.application-steps .step.completed .step-label {
    color: #212529;
    font-weight: 600;
}

/* navigation btns  */

/* in the  nav btn of the application  */
.application-prev-btn {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.application-prev-btn:hover,
.application-prev-btn:focus {
    background-color: #5a6268;
    border-color: #545b62;
    color: #fff;
}

.application-prev-btn:active {
    background-color: #545b62;
    border-color: #4e555b;
}

/* phone / field errorr */
.application-field-error {
    display: block;
    color: #dc3545;
    margin-top: 6px;
    font-size: 13px;
}