How can I relocate the Add To Cart button on Turbo theme?

This is the current layout of my product page:

I would like to move the Add To Cart button to below the Quantity box. Would someone be so kind to advise how to do that? I’m using Turbo theme version 6. Thank you!

Use margin and padding

@cosless

Kindly share your store url

@Zworthkey

My store is at www.cosless.com. Thanks!

.product-quantity-box.purchase-details__quantity {
    margin-right: 5px;
    width: auto !important;
}

Add this code in theme.scss.

Thank you.

Thanks for the suggestion! It managed to move the Add To Cart button to the next line but the alignment is off:

Appreciate it greatly!

.purchase-details__buttons {
    margin-right: 110px;
    margin-top: 10px !important;
    width: 55% !important;
}

Add this code in theme.css or theme.scss

Ok it works now! Thanks so much! You are awesome!

Thank you.

Was just looking for a similar solution to this issue of move the ATC under the quantity selector but read that Theme.css had been deprecated and all css is native.