<!DOCTYPE html> <html> <head><title>LOGIN</title> </head> <body> <style type=text/css> body {background-color:purple; max-width:100%} div{ align:center} input{ color:green } center{ color:blue } </style> <form action="#"> <fieldset style="background-color:#ccc;margin-top:25px"> <P><center>Log In</center></P><hr style="width:50%"><br> <label for>Your Username: </label> <input type="text" name="username" width="20" size="15" maxlength="30" placeholder="Username" required/><br /><br /><br /> <label for>Your Password: </label> <input type="password" name="password" size="15" required="required" placeholder="Password" /><br /><br /> <input type="submit" value="Log In" /> </fieldset> </form > </body> </html>