   .step-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #e9ecef;
        color: #6c757d;
        font-weight: 600;
        border: 2px solid #e9ecef;
        transition: all .3s;
    }

    .step-item.active .step-circle {
        background: #0d6efd;
        color: #fff;
        border-color: #0d6efd;
    }

    .step-item.done .step-circle {
        background: #198754;
        color: #fff;
        border-color: #198754;
    }

    .step-label {
        font-size: .8rem;
        color: #6c757d;
        margin-top: 6px;
        text-align: center;
    }

    .step-item.active .step-label,
    .step-item.done .step-label {
        color: #212529;
        font-weight: 600;
    }

    .step-line {
        flex: 1;
        height: 2px;
        background: #e9ecef;
        margin-top: 20px;
    }

    .step-line.done {
        background: #198754;
    }

    .step-wrapper {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .step-pane {
        display: none;
    }

    .step-pane.active {
        display: block;
    }

    .password-wrapper .input-group-text {
        cursor: pointer;
    }