-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresetpassword.css
71 lines (63 loc) · 1.21 KB
/
resetpassword.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
body {
font-family: Arial, sans-serif;
background-color: #e6e6fa;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
margin: 0;
}
h1 {
font-size: 24px;
text-align: center;
color: #222;
margin-bottom: 20px;
}
form {
background-color: #fff;
padding: 35px;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 400px;
}
input[type="password"] {
width: 100%;
padding: 12px;
margin: 12px 0;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
box-sizing: border-box;
}
input[type="password"]:focus {
border-color: #28a745;
outline: none;
box-shadow: 0 0 6px rgba(40, 167, 69, 0.3);
}
input.sub {
width: 100%;
padding: 12px;
background-color: #28a745;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
input.sub:hover {
background-color: #218838;
}
a {
display: block;
text-align: center;
margin-top: 20px;
color: #28a745;
text-decoration: none;
font-size: 14px;
}
a:hover {
text-decoration: underline;
}