
.subscription_box_form input{
    padding: 12px;
    height: unset;
    margin-bottom: 20px;
    border-color: #a8a8a8;    background: transparent;
}
.newsletter_box{
    display: flex;
    justify-content: space-between;
    border-radius: 30px;
    padding: 22px;
    align-items: center;
    font-size: 18px;
    box-shadow: -4px 10px 24px rgb(89 42 187 / 5%);
}

.toggle_button{
    padding: 4px 16px;
    cursor: pointer;
    font-size: 14px;
    border:solid 1px #e1e1e1;
    background: transparent;
    outline: 0 !important;
}
.toggle_button_active{
    background-color: #E42C64;
    border-color: #E42C64;
    color: white;
}
.toggle_button_box{
    display: flex;direction: ltr;
}
.toggle_button:first-child{
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.toggle_button:last-child{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
@media (max-width: 992px) {
    .newsletter_box{
        font-size: 16px;
    }
}