.main_content {
    padding: 20px 0;
}

/* .offer_img_div {
    width: 100%;
    overflow: hidden;
    background-color: #dc816e;
}

.offer_img_div>img {
    border-radius: 6px;
    width: 100%;
    max-width: 800px;
    height: 200px;
    margin: 0 auto;
} */

.slp_container {
    width: 100%;
    max-width: 1000px;
    height: fit-content;
    max-height: 550px;
    display: flex;
    margin: 20px auto;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
    border-radius: 6px;
    overflow: hidden;
}

.slp_left_section {
    width: 50%;
}

.slp_left_section > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slp_right_section {
    flex: 0 0 auto;
    width: 50%;
    border-left: 1px solid var(--light-gray);
}

.customer_slp_form {
    width: 100%;
    max-width: 350px;
    padding: 0 20px;
    /* margin-top: 20px; */
    border-radius: 4px;
    background-color: #fff;
}

.form_secondary_action {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
}

.form_secondary_action p {
    color: var(--header-subtext-color);
}

.form_secondary_action_link {
    font-weight: 500;
    color: var(--header-text-brown);
}

.form_secondary_action_link:hover {
    text-decoration: underline;
}

.slp_offer_text_div {
    width: 100%;
    padding: 10px 20px;
    /* border-radius: 4px; */
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    background-color: var(--primary-color);
    color: white;
}

.slp_offer_text_div .offer {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin: 0 6px;
}

@media screen and (max-width: 900px) {
    .slp_container {
        flex-direction: column;
        height: fit-content;
        box-shadow: none;
    }

    .slp_left_section {
        display: none;
    }

    .slp_right_section {
        width: 100%;
    }
}

@media screen and (max-width: 650px) {
    .main_content {
        padding-top: 0px;
    }

    .offer_img_div {
        border-radius: 0px;
    }

    .form_secondary_action {
        font-size: 14px;
    }
}