Register button on Login Page
I have changed the text (Register) link on the login page to a Button.
I have pasted this code into the child theme CSS and the button shows up great on the page, but it is overlapping the text link (Lost your password)
This is the code I used
#wpcf7-f47-p48-o1 form {
width: 360px;
margin: 0 auto;
}
p.register a {
background: transparent url(images/btn-orange.gif) repeat-x scroll 0 0;
border: 2px solid #BE3101;
color: #FFF;
text-decoration: none;
margin: 0;
padding: 0px 5px;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}
What code do I need to add to give a big enough margin at the top of the button so that the button do not obscure the Lost your password link?
Any help Thank you.
Sandra