OK with just css all you have to do is delete
body:hover .form{}
add and in
.create-link:hover .form{
opacity:1.0;
width:260px;
}
After that you will need to update the html creation link on this
<li class="create-link">
<a href="#">
<h1 class="account-links">Create One</h1></a>
<form class="form" action="demo_form.asp" method="get">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
Password: <input type="text" name="pass">
<input type="submit" value="Submit">
</form>
</li>
source
share