/* Registration Section Sticky Scroll Layout */
.registration-scroll-layout {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Left Panel: Sticky Offer */
.registration-sticky-panel {
    width: 38%;
    /* height: fit-content removed to allow full height */
}

.registration-sticky-panel>div {
    position: sticky;
    top: 100px;
}

/* Right Panel: Scrolling Form */
.registration-scrolling-form {
    flex: 1;
    width: 62%;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .registration-scroll-layout {
        flex-direction: column;
        gap: 32px;
    }

    .registration-sticky-panel,
    .registration-scrolling-form {
        width: 100%;
    }

    .registration-sticky-panel>div {
        position: relative;
        top: 0;
    }
}