How to change position of Save and Close Button?

Hello,
I am using plumsail forms in SharePoint online,
I want to change the position of default SharePoint Save and Close?
like I want to save button on the right side of the page and close at the left side.

Thanks in Advance.

harshp924 - This isn't exactly what you're asking, but I wonder if you can manipulate alignment in this same way. I will test it out too!

Good luck!

Thanks @shedev,
i will look into this.

Hello,
I am adding working code below in case some one looking for same,

.fd-toolbar-primary-commands{
position:relative;
}
.fd-toolbar-primary-commands > .btn-outline-primary{
position:absolute;
height:40px;
}
.fd-toolbar-primary-commands > .btn-primary{
margin-left:80px;
}

Thanks.