@judotter: There is problem when you copy the css. I see you added custom css as 
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
textarea {
        color: #555;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus {
        color: #000;
}
But it should be
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
textarea {
	color: #555;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus {
	color: #000;
}