-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (70 loc) · 1.22 KB
/
style.css
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
body{
background-color: #1B1F27 ;
font-family: Arial, Helvetica, sans-serif;
overflow: hidden;
}
h1{
color:#CBD0F7 ;
align-items: center;
text-transform: uppercase;
}
.home{
display: flex;
align-items: center;
justify-content: center;
}
.area-login{
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
}
.login{
display: flex;
flex-direction: column;
align-items: center;
background-color: #181920;
width: 355px;
height: 320px;
padding: 35px;
border-radius: 20px;
}
.login form{
display: flex;
flex-direction: column;
width: 100%;
}
.login input{
margin-top: 10px;
background-color: #252A34;
border: none;
height: 45px;
outline: none;
border-radius: 8px;
color: #CBD0F7;
padding-left: 10px;
}
.login img{
width: 65px;
height: auto;
}
input::placeholder{
color: #CBD0F7;
font-size: 14px;
}
form [type="submit"]{
display: block;
background-color: #5568FE;
font-size: 18px;
text-transform: uppercase;
font-weight: bold;
cursor: pointer;
}
p{
color: #CBD0F7;
}
a{
color:#5568FE;
text-decoration: none;
margin-left: 10px;
}