.lr-container{

    max-width:1200px;
    margin:auto;
    padding:40px;

    border:1px solid #ddd;

    border-radius:10px;

}

.lr-container h2 {
    margin-top: 0;
}

.lr-step-content {
    display: none !important;
}

.lr-step-content.active {
    display: block !important;
}

.lr-stepper {
    display: flex !important;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
}

.lr-stepper::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #d1d1d1;
    z-index: 0;
}

.lr-step {
    position: relative;
    flex: 1;
    text-align: center;
    opacity: 0.5;
    z-index: 1;
}

.lr-step.active {
    opacity: 1;
    font-weight: bold;
}

.lr-step-circle {
    width: 40px;
    height: 40px;
    border: 2px solid #333;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.lr-step.active {
    opacity: 1;
    font-weight: bold;
}

.lr-step.active .lr-step-circle {
    background-color: #333;
    border-color: white;
    color: #fff;
}

.lr-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}