Skip to content

Commit

Permalink
sds
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagofrnk committed Jan 14, 2024
1 parent b8aa479 commit d6fbbff
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
24 changes: 24 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="container"> <!--Tela toda-->
<div class="formulario">

<h1 class="formulario-texto">LOGIN</h1>

<input type="text" name="usuario" id="usuario">
<input type="password" name="senha" id="senha">

<button>ENTRAR</button>

<p>Não possui conta? <a href="#">Cadastre-se</a></p>
</div>
</div>
</body>
</html>
38 changes: 38 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
*{
margin: 0;
padding: 0;
}

.container{
display: flex;
justify-content: center;
width: 100%;
height: 100vh;
}

.formulario{
display: flex;
flex-direction: column;
margin-top: 8rem;
background-color: beige;
padding: 3.1rem;
width: 18rem;
height: 21rem;
text-align: center;
}

.formulario-texto{
color: rgb(0, 0, 0);
margin-bottom: 1.25rem;

}

input{
margin-bottom: 1.25rem;
}

button{
margin-bottom: 1.25rem;
}

p{}

0 comments on commit d6fbbff

Please sign in to comment.