-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0a4db60
Showing
2 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt-BR"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="styles.css"> | ||
<title>Login de Acesso</title> | ||
</head> | ||
<body> | ||
<div class="login-container"> | ||
<div class="form-wrapper"> | ||
<h2>Login de Acesso</h2> | ||
<form> | ||
<div class="input-field"> | ||
<label for="username">Usuário</label> | ||
<input type="text" id="username" placeholder="Digite seu usuário" required> | ||
</div> | ||
<div class="input-field"> | ||
<label for="password">Senha</label> | ||
<input type="password" id="password" placeholder="Digite sua senha" required> | ||
</div> | ||
<button type="submit">Entrar</button> | ||
</form> | ||
<p class="register-link">Ainda não tem conta? <a href="#">Registre-se aqui!</a></p> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
background: linear-gradient(to right, #ff7e5f, #feb47b); | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
margin: 0; | ||
} | ||
|
||
.login-container { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.form-wrapper { | ||
background-color: white; | ||
padding: 40px; | ||
border-radius: 10px; | ||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); | ||
width: 400px; | ||
text-align: center; | ||
} | ||
|
||
h2 { | ||
margin-bottom: 20px; | ||
color: #333; | ||
} | ||
|
||
.input-field { | ||
margin-bottom: 20px; | ||
text-align: left; | ||
} | ||
|
||
label { | ||
display: block; | ||
margin-bottom: 5px; | ||
color: #555; | ||
} | ||
|
||
input { | ||
width: 100%; | ||
padding: 12px; | ||
border: 1px solid #ddd; | ||
border-radius: 5px; | ||
font-size: 16px; | ||
transition: border-color 0.3s; | ||
} | ||
|
||
input:focus { | ||
border-color: #ff7e5f; | ||
outline: none; | ||
} | ||
|
||
button { | ||
width: 100%; | ||
padding: 12px; | ||
background-color: #ff7e5f; | ||
color: white; | ||
border: none; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
font-size: 16px; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
button:hover { | ||
background-color: #feb47b; | ||
} | ||
|
||
.register-link { | ||
margin-top: 20px; | ||
color: #777; | ||
} | ||
|
||
.register-link a { | ||
color: #ff7e5f; | ||
text-decoration: none; | ||
} | ||
|
||
.register-link a:hover { | ||
text-decoration: underline; | ||
} |