.progress-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.steps {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 120px;
}

.step {
    width: 30px;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 50%;
    margin: 0 5px;
    position: relative;
    padding-left: 11px;
    padding-top: 3px;
}

.step.is-active {
    background-color: #6200ea;
    color: white;
}

.step::after {
    content: "";
    width: 100px;
    height: 4px;
    background-color: #e0e0e0;
    position: absolute;
    top: 15px;
    left: 45px;
}

/* .step.is-active::after {
    background-color: #6200ea;
} */

.steps .step:last-child::after {
    content: none;
}

.form-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.form-description {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding-top: 05px;
    padding-left: 05px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.btn-primary {
    background-color: #6200ea;
    border-color: #6200ea;
    padding: 10px 20px;
    border-radius: 5px; 
}

.custom-max-width {
    max-width: 800px !important;
}

.btn-xs {
    padding: 6px 18px;
}

.form-actions .btn {
    padding: 10px 20px;
}

.list-unstyled li div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.verification-name {
    min-width: 220px;
}