How can I realign the footer elements in my online store?

this my store link- https://40581e-3.myshopify.com/

can anyone please help me figure out how to align the email sign up text and field with the rest of the content

Hi @Shamail ,

Please insert this CSS into your CSS file:

.footer__content-top { 
    display: flex !important;
    align-items: flex-start;
    max-width: 100%;
    justify-content: space-between;
}

.footer__content-top .footer__blocks-wrapper {
    width: 75%;
}

.footer__content-top .footer-block--newsletter {
   width: 20%;
}

Result:

Hope it helps @Shamail