Newer
Older
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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');
:root {
--dblue: #437fc7;
--lblue: #6daffe;
--grey: #edf6ff;
--orange: #f79256;
}
*{
margin: 0;
}
html {
height: 100%;
}
body {
background: linear-gradient(135deg, rgb(112, 174, 250) 0%, rgb(51, 106, 173) 100%);
font-family: 'Montserrat', sans-serif;
}
.header {
color: white;
margin: 2em auto 4em;
width: 25em;
}
h1{
font-weight: 800;
margin: 0.5em 0 0;
}
#loginBox {
background-color: white;
margin: 0 auto;
padding: 2.5em;
width: 20em;
box-shadow: .125em .125em .4375em rgb(90, 90, 90);
border-radius: 0.625em;
}
.loginBoxHeader {
margin-bottom: 2em;
font-weight: 600;
}
input.login {
font-family: 'Montserrat', sans-serif;
width: 100%;
box-sizing: border-box;
padding: .6em;
margin-top: .5em;
margin-bottom: 1.5em;
border: grey solid .0625em;
border-radius: .25em;
font-size: 1em;
}
button.login {
color: white;
font-weight: 600;
font-family: 'Montserrat', sans-serif;
width: 100%;
margin-bottom: 1.5em;
padding: .9em;
border: #ffb88f 0px solid;
border-radius: .25em;
background-color: var(--orange);
transition: all .08s ease-in-out;
}
button.login:hover {
box-shadow: 2px 2px 2px grey;
}
button.login:active {
box-shadow: 0px 0px 0px black;
transition: all .0s ease-in-out;
}
#forgotPassword {
color: rgb(88, 88, 88);
text-decoration: none;
}
#signup {
display: inline-block;
margin-top: .5em;
color: rgb(88, 88, 88);
}
#signupLink, #signupLink:visited {
color: rgb(88, 88, 88);
}
/* Footer */
footer {
position: absolute;
bottom: 0;
width: 100%;
padding: 3em 0;
}
.footerWrapper {
max-width: 60em;
margin: 0 auto;
padding: 0 6em;
text-align: center;
}
footer a {
color: white;
text-decoration: none;
}