Hi,
You need to modify
~\CMSWebParts\Membership\LogonForm.ascx file in such a way that instead of following code:
<cms:LocalizedButton ID="LoginButton" runat="server" CommandName="Login" ValidationGroup="Login1" EnableViewState="false" />
you need to use ImageButton control:
<asp:ImageButton ImageUrl="YOURimageURL" ID="LoginButton" runat="server" CommandName="Login" ValidationGroup="Login1" EnableViewState="false" />
You also need to change code behind of this web part. You need to use ImageButton object instead of LocalizedButton.
Best Regards,
Miroslav Remias.