Given this html:
<div id="admin_login">
<form>
<input type="text"/>
<input type="text"/>
</form>
<a href="#">Login</a>
</div>
And this css:
#admin_login form {
background: #464950;
padding: 5px;
box-shadow: #000 2px 2px 10px;
border-bottom-right-radius: 10px;
margin-bottom:3px;
}
#admin_login input {
display: block;
border: none;
margin: 6px 4px;
padding: 4px;
}
#admin_login a {
color: inherit;
background: #464950;
padding: 4px 8px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
box-shadow: #000 2px 2px 10px;
text-decoration: none;
}
I get this:

How can I make the anchor tag and the form appear as one element, instead of overlapping each other?
UPDATE
@TristarWebDesign's solution worked perfectly:

aelement to disappear. That could be feasible by adjusting thebox-shadow:attribute's value but I don't think it's very clean to do it this way... – p4bl0 May 18 '11 at 13:39