-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathforgotpassword.css
92 lines (81 loc) · 1.55 KB
/
forgotpassword.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
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #ffffff;
color: #191414;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
display: flex;
justify-content: center;
align-items: center;
width: 90%;
max-width: 500px;
}
.forgot-password-container {
background-color: #f0f0f0;
border-radius: 12px;
padding: 40px;
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
width: 100%;
}
h2 {
font-size: 26px;
margin-bottom: 20px;
color: #25a55e;
}
p {
font-size: 16px;
margin-bottom: 20px;
color: #555555;
}
label {
display: block;
font-weight: bold;
margin-bottom: 10px;
font-size: 18px;
color: #191414;
}
input {
width: 100%;
padding: 15px;
box-sizing: border-box;
margin-bottom: 20px;
border: none;
border-radius: 4px;
font-size: 16px;
background-color: #e6e6e6;
color: #333333;
}
input::placeholder {
color: #999999;
}
button {
background-color: #25a55e;
color: #ffffff;
padding: 15px;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
font-size: 20px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #191414;
color: #ffffff;
}
.links {
margin-top: 15px;
color: #333333;
font-size: 14px;
}
.links a {
color: #25a55e;
text-decoration: none;
margin: 0 10px;
}