Skip to content

Commit

Permalink
envio ok
Browse files Browse the repository at this point in the history
  • Loading branch information
tirasgosim authored Sep 18, 2024
0 parents commit 0a4db60
Show file tree
Hide file tree
Showing 2 changed files with 112 additions and 0 deletions.
28 changes: 28 additions & 0 deletions index.html
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>
84 changes: 84 additions & 0 deletions stylees.css
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;
}

0 comments on commit 0a4db60

Please sign in to comment.