-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlost-password.css
53 lines (47 loc) · 846 Bytes
/
lost-password.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
.lostpassword {
max-width: 600px;
margin: 30px;
height: 77.9vh;
}
.lostpassword input [type="email"] {
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
border: none;
width: 100%;
max-width: 500px;
}
.lostpassword input[type="submit"] {
padding: 10px 20px;
background-color: #2457cf;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.lostpassword input[type="submit"]:hover {
background-color: #444;
}
.lostpassword label {
font-size: 14px;
margin-bottom: 10px;
display: inline;
text-align: left;
}
.logout {
position: absolute;
top: 60px;
right: 30px;
}
.logout button {
padding: 5px 5px;
background-color: #ffffff;
color: #000000;
border: none;
border-radius: 5px;
cursor: pointer;
}
.logout button:hover {
background-color: #2457cf;
color: #ffffff;
}