-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (122 loc) · 3.43 KB
/
index.html
File metadata and controls
124 lines (122 loc) · 3.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');
body {
margin:0cm;
font-family: 'Noto Sans', sans-serif;
}
.main{
width: 100vw;
height: 100vh;
background-color: #201b2c;
display: flex;
justify-content: center;
align-items: center ;
}
.left{
width: 50vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center ;
flex-direction: column;
}
.right{
width: 50vw;
height: 100vh;
background-color: #201b2c;
display: flex;
justify-content: center;
align-items: center ;
}
.left > h1{
color : #77ffc0;
}
.card {
width: 60%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 30px 35px;
background: #2f2841;
border-radius: 20px;
box-shadow: 0px 10px 40px #00000056;
}
.card > h1 {
color:#00ff88 ;
margin: 0cm;
font-weight: 800;
}
.textfield{
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
margin: 10px 0px;
}
.textfield > input {
width: 100%;
border: none ;
border-radius: 10px;
padding: 15px;
background: #514868 ;
color:#f0ffffde ;
font-size: 12 pt;
box-shadow: 0px 10px 40px #00000056;
outline: none;
box-sizing: border-box;
}
.textfield > label {
color: #f0ffffde;
margin-bottom: 10px ;
}
.textfield > input::placeholder{
color: #f0ffff94;
}
.BTNlogin {
width: 100%;
padding: 16px 0px;
margin: 25px;
border: none;
border-radius: 8px;
text-transform: uppercase ;
font-weight: 800;
letter-spacing: 3px;
color: #2b134b;
background: #00ff88;
cursor: pointer;
box-shadow: 0px 10px 40px -12px #00ff8052;
}
</style>
</head>
<body>
<div class="main">
<div class="left">
<h1>
Faça seu login aqui
</h1>
</div>
<div class="right">
<div class="card">
<h1>Login</h1>
<div class="textfield">
<label for="Usuário">Usuário</label>
<input type="text" name="Usuário" placeholder="Usuário" />
</div>
<div class="textfield">
<label for="Senha">Senha</label>
<input type="password" name="passwd" placeholder="Senha" />
</div>
<button class="BTNlogin"> Login </button>
</div>
</div>
</div>
</body>
</html>