-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (73 loc) · 1.38 KB
/
style.css
File metadata and controls
84 lines (73 loc) · 1.38 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
@import url(https://fonts.googleapis.com/css?family=Poppins);
*{
box-sizing: border-box;
}
body{
margin: 0px;
padding: 0px;
font-family: "Poppins", sans-serif;
}
.container{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.heading-container{
text-align: center;
margin-bottom: 40px;
padding: 0px;
}
.heading-container > *{
margin: 0px;
padding: 5px;
}
.login-form{
width: 380px;
border-radius: 4px;
margin: 2em auto;
padding: 3em 2em 2em 3em;
background: #fafafa;
border: 1px solid #ebebeb;
color: black !important;
box-shadow: rgba(0, 0, 0, 0.14902) 0px 1px 1px 0px, rgba(0, 0, 0, 0.09804) 0px 1px 2px 0px;
}
.group{
margin-bottom: 30px;
}
.login-input{
font-size: 18px;
width: 100%;
}
.form-link{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
font-size: 12px;
}
.login-form a{
font-size: 11px;
font-weight: 500;
color: black;
}
input[type="email"],
input[type="password"]{
width: 100%;
border: 2px solid #7768AE;
font-family: inherit;
font-size: 12px;
font-weight: 600;
padding: 12px;
}
.btn{
width: 100%;
padding: 10px 0px;
background: #7768AE;
cursor: pointer;
font-size: 16px;
font-family: inherit;
color: #fff;
border: none;
font-weight: 600;
}