-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
56 lines (49 loc) · 842 Bytes
/
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
body {
font-family: "Poppins", sans-serif;
align-items: center;
justify-content: center;
background-color: #f3f3f3;
}
.heading {
font-size: 2.8rem;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 6rem;
}
.login-card {
width: 30rem;
margin: 20rem auto;
text-align: center;
}
.field-input {
width: 100%;
border: none;
padding: 1.3rem 5rem;
font-size: 1.4rem;
font-family: inherit;
text-align: center;
margin-bottom: 2rem;
}
form input:nth-child(2) {
margin-bottom: 4rem;
}
.btn {
width: 100%;
border: none;
font-size: 1.6rem;
padding: 1.3rem;
background-color: #66c873;
transition: 0.5s all ease-in;
display: block;
}
.btn:hover {
background-color: #52a05c;
cursor: pointer;
}
.login-form {
margin-bottom: 2rem;
}
.error {
font-size: 1.6rem;
color: #e52a5a;
}