Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>Área de Login</title>
- <style>
- /*
- Created on : 03/01/2018, 19:47:11
- Author : Luciano Charles
- */
- *{
- margin: 0;
- padding: 0;
- }
- body{
- background-image: url(aguas.jpg);
- -webkit-background-size: cover;
- background-size: cover;
- font-family: Tahoma, sans-serif;
- }
- .form-area{
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%,-50%);
- width: 400px;
- height: 500px;
- box-sizing: border-box;
- background-color: rgba(0,0,0,0.5);
- padding: 40px;
- border-radius: 5px;
- }
- h3{
- padding: 0 0 20px;
- font-weight: bold;
- color: #fff;
- text-align: center;
- }
- .form-area p{
- font-weight: bold;
- color: #fff;
- }
- .form-area input{
- margin-bottom: 20px;
- width: 100%;
- }
- .form-area input[type=email],
- .form-area input[type=password]{
- border: none;
- border-bottom: 1px solid #fff;
- background-color: transparent;
- outline: none;
- height: 40px;
- color: #fff;
- display: 16px;
- padding: 5px;
- }
- ::placeholder{
- color: #fff;
- }
- .form-area input[type=submit]{
- border: none;
- height: 40px;
- outline: none;
- color: #fff;
- font-size: 15px;
- background-color: #0F272E;
- cursor: pointer;
- border-radius: 10px;
- }
- .form-area input[type=submit]:hover{
- background-color: #40433E;
- color: #fff;
- }
- .form-area a{
- color: #fff;
- text-decoration: none;
- font-size: 14px;
- font-weight: bold;
- }
- </style>
- </head>
- <body>
- <div class="form-area">
- <h3>Área de Login</h3>
- <form method="POST">
- <p>Email:</p>
- <input type="email" name="email" id="email" placeholder="Digite seu e-mail..." />
- <p>Senha:</p>
- <input type="password" name="senha" id="senha" placeholder="Digite sua senha..." />
- <p></p>
- <input type="submit" value="Logar" />
- <a href="#">Recuperar Senha?</a>
- </form>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment