
.step-wrapper {
    display: flex;
    align-items: flex-start; 
    justify-content: space-between;
    width: 100%;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0; 
}

.step-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #d37e7e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.3s;
}

.text-registrasi{
    font-size: 28px;
}

.step-item.active .step-circle {
    background: #960701;
}

.step-label {
    color: #960701;
    font-size: 0.85rem;
    white-space: nowrap; 
}

.step-line {
    flex-grow: 1;
    height: 4px;
    background: #ddd;
    margin-top: 15px;
    margin-left: -9px;
    margin-right: -9px;
    z-index: 1;
}

.step-line.active-line {
    background: #ef1414;
}

.custom-input .form-select{
     border: 1px solid black;
}

.custom-input .select2{
     border: 1px solid black;
}
.custom-input .form-control{
    border: 1px solid black;
}

.custom-radio .form-check-input {
    border: 2px solid black;
}


.custom-radio .form-check-input:checked {
    background-color: #960701; 
    border: none;
}

.custom-radio .form-check-input:focus {
    box-shadow: none;
}


@media (max-width: 576px) {
.text-registrasi{
    font-size: 18px;
}
    .step-label {
        font-size: 0.7rem;
    }
    .step-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .step-circle {
        width: 30px;
        height: 30px;
    }
    .step-line {
        margin-top: 13px;
    }
}