body {
    background-color: #F4F9FD;
    font-family: 'Nunito Sans', sans-serif;
    margin: 0;
}

.main-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    flex-wrap: wrap;
}

.left-panel {
    
    background-color: #089A49;
    height: 100%;
    color: white;
    border-radius: 14px;
    padding: 40px 24px;
    box-shadow: 0px 6px 58px rgba(196, 203, 214, 0.1);
}
.left-panel-container {
    flex: 0 0 25%;
    padding-right: 15px;
}

.left-panel img {
    max-height: 40px;
    margin-bottom: 40px;
}

.left-panel h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.stepper-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 32px;
}

.stepper-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 26px;
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
}

.stepper-item:last-child::before {
    display: none;
}

.step-counter {
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    opacity: 0.7;
}

.stepper-item.active .step-counter,
.stepper-item.completed .step-counter {
    opacity: 1;
    border: 2px solid #fff;
}

.stepper-item.active .step-title,
.stepper-item.completed .step-title {
    opacity: 1;
}

.right-panel {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0px 6px 58px rgba(196, 203, 214, 0.1);
}
.right-panel-container {
    flex: 0 0 75%;
    padding-left: 15px;
}

.right-panel-body {
    padding: 50px 40px;
}

/* Large screens (≥1200px) */
@media (min-width: 1200px) {
    .right-panel-body {
    padding-left: 300px;
    padding-right: 300px;
    }
}

/* Tablets (≥768px and <1200px) */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .right-panel-body {
    padding-left: 160px;
    padding-right: 160px;
    }
}

/* Mobile (<768px) */
@media (max-width: 767.98px) {
    .right-panel-body {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 30px;
    padding-bottom: 30px;
    }
}

.right-panel h2 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 6px;
    color: #0A1629;
}

.right-panel .form-label {
    font-weight: 700;
    font-size: 14px;
    color: #7D8592;
}

/* Responsive */
@media (max-width: 992px) {
    .left-panel-container,
    .right-panel-container {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
    }

    .main-container {
    padding: 10px;
    }

    .left-panel {
    border-radius: 14px 14px 0 0;
    padding: 30px 20px;
    }

    .right-panel {
    border-radius: 0 0 14px 14px;
    }

    .right-panel-body {
    padding: 24px 16px;
    }

    .form-footer {
    padding: 16px;
    }

    .right-panel h2 {
    font-size: 20px;
    }

    .step-title {
    font-size: 14px;
    }
}

.form-footer {
    border-top: 1px solid #E6ECF1;
    padding: 20px 40px;
}