-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (104 loc) · 2.27 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
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
125
126
127
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
body {
margin: 0;
font-family: 'Noto Sans', sans-serif;
}
.main-login{
width: 100vw;
height: 100vh;
background: #201b2c;
display: flex;
justify-content: center;
align-items: center;
}
.left-login{
width: 50vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column
}
.left-login > h1{
color: #77ffc0;
}
.right-login{
width: 50vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.card-login{
width: 60%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 30px 35px;
background-color: #2f2841;
border-radius: 20px;
box-shadow: 0px 10px 40px #00000056;
}
.card-login > h1 {
color:#00ff88;
font-weight: 800;
margin: 0;
}
.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: #514869;
color: #f0ffffde;
font-size: 12pt;
box-shadow: 0px 10px 40px #00000056;
outline: none;
box-sizing: border-box;
}
.textfield > label {
color: #f0ffffde;
margin-bottom: 10px;
}
.textfield > input::placeholder{
color: #7f8888de
}
.btn-login{
width: 100%;
padding: 16px 0px;
margin: 5px;
border: none;
border-radius: 8px;
outline: none;
text-transform: uppercase;
font-weight: 800;
letter-spacing: 3px;
color: #2b134b;
background: #00ff88;
cursor: pointer;
box-shadow: 0px 10px 40px -12px #00ff8052;
}
.btn-cadastro {
width: 100%;
padding: 16px 0px;
margin: 5px;
border: none;
border-radius: 8px;
outline: none;
text-transform: uppercase;
font-weight: 800;
letter-spacing: 3px;
color: #2b134b;
background: #5c8b75;
cursor: pointer;
box-shadow: 0px 10px 40px -12px #00ff8052;
}