-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (99 loc) · 1.85 KB
/
Copy pathstyle.css
File metadata and controls
112 lines (99 loc) · 1.85 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
*{
box-sizing: border-box;
}
body{
margin: 0;
height: 100vh;
width: 100vw;
overflow: hidden;
font-family: "Poppins", sans-serif;
display: flex;
align-items: center;
justify-content: center;
color: #555;
background-color: #ecf0f3;
}
.login-div{
width: 400px;
height: 600px;
padding: 60px 35px 35px 35px;
border-radius: 40px;
border-color: #ecf0f3;
box-shadow: 13px 13px 20px #ffffff,
-13px -13px 20px #ffffff;
}
.logo{
background: url(logo.png);
width: 100px;
height: 100px;
border-radius: 50px;
margin: 0 auto;
box-shadow: 0px 0px 0px 2px #ffffff,
0px 0px 8px 5px #ecf0f3,
8px 8px 15px #1f1f1f,
-5px -5px 45px #fff;
}
.title{
text-align: center;
font-size: 28px;
padding-top: 24px;
letter-spacing: 3px;
color: black;
font-style:inherit;
font-weight: 700;
}
.fields{
width: 100%;
padding: 60px 5px 5px 5px;
}
.fields input{
border: none;
outline: none;
background: none;
font-size: 18px;
color: #555;
padding: 20px 7px 15px 3px;
}
.username,
.password{
margin-bottom: 30px;
border-radius: 25px;
box-shadow: inset 8px 8px 8px #cbced1,
-8px -8px 8px #fff;
}
.fields svg{
height: 22px;
margin: 0px 10px -3px 25px;
}
.signin-btn{
outline: none;
border: none;
cursor: pointer;
width: 100%;
height: 50px;
border-radius:30px;
font-weight: 600;
text-align: center;
background-color: #02c8db;
color: #fff;
box-shadow: 3px 3px 8px #b1b1b1
-3px -3px 8px #fff;
transition: all 0.5s;
}
.signin-btn:hover{
background-color: #50e5b9;
}
.link{
padding-top: 20px;
text-align: center;
}
.link a{
text-decoration: none;
color: #767373;
font-size: 15px;
}
.sub-title{
text-align: center;
font-weight: 500;
color:#5f5f5f;
}