/* Container for button and loader */
.submit-button-container {
    display: inline-flex;
    align-items: center;
}

/* Style for the button */
.button {
    /* Your existing button styles */
    margin-right: 8px; /* Adjust the spacing as needed */
}

/* Style for the loader */
.loader {
    display: inline-flex;
    align-items: center;
    /* Add any additional styles if needed */
}
