My page is not showing the input text from my form. Whenever I select the text box, it glows but it does not accept text.
I know there's something wrong with my CSS, but I can't seem to figure out the problem.
HTML:
<div class="container" id="signin">
<h2>Sign in</h2>
<form method="post" action="index.html">
<!-- <input style="display:none" type="password" name="fakepasswordremembered"/> -->
<input type="text" name="password" placeholder="Password" >
<br />
<input class="button" type="submit" name="commit" value="Login" />
</form>
</div>
CSS:
a {
text-decoration: none;
position: absolute;
right: 0;
text-align: right;
color: #fff;
}
a:hover {
text-decoration: underline;
}
.container {
position: fixed;
top: 50%;
left: 50%;
width: 55%;
padding: 30px 0;
transform: translate(-50%, -50%);
text-align: center;
color: #fff;
background: rgba(0,0,0,0.3);
}
#signin, #close {
display: none;
}
#signin {
width: 35%;
}