<html lang="pt_BR"><head> <meta charset="utf-8"> <title> ADMINISTRAÇÃO - Suas Compras </title> <style type="text/css"> body{ margin: 0; padding: 0; background: #e4e4e4; outline: 0; font-family: Lucida Sans , sans-serif; }#content{ width: 50%; margin: 0 auto; } #login{ position: absolute; left: 50%; top: 50%; margin-top: -150px; margin-left: -150px; width: 300px; height: 300px; border : 1px solid #ccc; border-radius: 5px; background: #fff; }#login h3{ font-family: Arial Black; font-weight: 600; color : #fff; width: 100%; padding: 20px 0px; margin-top: 0px; border-radius: 5px 5px 0px 0px; text-align: center; background: #000254;
} #login form{ width: 80%; margin: 0 auto; } #login input { height: 30px; width: 100%; margin: 10px 0px; border: 1px solid #ccc; border-radius: 3px;
} #login input[type="submit"]{ height: 50px; font-family: Arial Black; font-size: 20px; color: #fff; background: #000254; box-shadow: 0px 4px 0px #000346; border: 0; } #login input[type="submit"]:hover{ background: #030684; box-shadow: 0px 4px 0px #000254; } #login input[type="submit"]:active{ box-shadow: inset 0px 0px 5px 0px #000; height: 54px; }
</style></head>
<body> <div id="content"> <div id="login"> <h3>ADMINISTRAÇÃO</h3> <form name="login_adm" action="index.php" method="post"> <label>USUÁRIO:</label> <input type="text" name="login[user]"> <label>SENHA:</label> <input type="password" name="login[pass]"> <input type="submit" value="ENTRAR"> </form> </div> </div></body>
</html>