-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (64 loc) · 1.1 KB
/
Copy pathstyle.css
File metadata and controls
67 lines (64 loc) · 1.1 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
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(to right, #24b0e7, #9437e0);
width: 100vw;
height: 100vh;
position: relative;
font-family: "Poppins", sans-serif;
}
form {
width: 300px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #fff;
padding: 20px;
}
h1 {
text-align: center;
font-size: 25px;
}
.input-field label {
display: block;
color: #000;
padding-top: 10px;
}
.input-field input {
width: 100%;
font-size: 20px;
padding: 5px 5px;
outline: none;
border: 1px solid gray;
border-radius: 3px;
}
.forgot {
display: block;
}
a {
text-decoration: none;
color: dodgerblue;
}
button {
border: none;
border-radius: 3px;
outline: none;
margin: 20px 0;
background: linear-gradient(to right, #24b0e7, #9437e0);
width: 100%;
padding: 5px 10px;
font-family: inherit;
font-size: 20px;
font-weight: 600;
letter-spacing: 2px;
color: #fff;
}
.signup {
text-align: center;
font-size: 14px;
}