-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
141 lines (122 loc) · 2.53 KB
/
style.css
File metadata and controls
141 lines (122 loc) · 2.53 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #edf1f4;
}
.login{
position: relative;
width: 380px;
padding: 80px 50px 50px;
box-shadow: 15px 15px 20px rgba(0,0,0,0.1),
-15px -15px 20px #fffb;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 20px;
}
.login form{
position: relative;
width: 100%;
}
.login form h2{
font-size: 2em;
margin-bottom: 30px;
line-height: 0.9em;
}
.login form h2 span{
font-weight: 300;
font-size: 0.65em;
}
.login form .inputBox{
position: relative;
display: flex;
}
.login form .inputBox input{
border: none;
outline: none;
background: transparent;
border-radius: 10px;
font-size: 1em;
}
.login form .inputBox input[type="text"],
.login form .inputBox input[type="password"]{
width: 100%;
padding: 15px 20px;
padding-left: 40px;
margin-bottom: 20px;
box-shadow: inset 5px 5px 10px rgba(0,0,0,0.1),
inset -5px -5px 10px #fff;
}
.login form .inputBox i{
position: absolute;
left: 20px;
top: 25%;
}
.login form label{
display: flex;
align-items: center;
}
.login form input[type="checkbox"]
{
margin-right: 5px;
}
.login form .inputBox input[type="submit"]
{
margin-top: 20px;
box-shadow: 5px 5px 10px rgba(0,0,0,0.1),
-5px -5px 10px #fff;
width: 100%;
padding: 15px 20px;
cursor: pointer;
font-weight: 600;
}
.login form .inputBox input[type="submit"]:focus
{
box-shadow: inset 5px 5px 10px rgba(0,0,0,0.1),
inset -5px -5px 10px #fff;
}
.login .fingerprint{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 15px;
cursor: pointer;
}
.login .fingerprint .fingerprintBox
{
box-shadow: 5px 5px 10px rgba(0,0,0,0.1),
-5px -5px 10px #fff;
border: 3px solid #edf1f4;
padding: 15px 20px 10px;
border-radius: 10px;
background: linear-gradient(315deg,#03a9f4,#0082bc);
}
.login .fingerprint .fingerprintBox img{
max-width: 40px;
filter: invert(1);
animation: animate 1s linear infinite;
}
@keyframes animate{
0%,100%{
opacity: 1;
}
50%{
opacity: 0.5;
}
}
.login .fingerprint p
{
font-weight: 500;
}