-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchange_password.css
93 lines (83 loc) · 1.57 KB
/
change_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
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
/* Global styles */
body {
font-family: 'Roboto', Arial, sans-serif;
background-color: #f8f9fa;
color: #333;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
h1 {
font-size: 2rem;
margin-bottom: 20px;
color: #343a40;
}
/* Back button styles */
.back-button {
position: absolute;
top: 20px;
left: 20px;
padding: 10px 20px;
background-color: #4CAF50;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 16px;
}
.back-button:hover {
background-color: #45a049;
}
/* Form styles */
form {
background-color: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 400px;
}
label {
font-size: 1rem;
margin-bottom: 5px;
display: block;
color: #495057;
}
input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ced4da;
border-radius: 5px;
font-size: 1rem;
color: #495057;
}
input:focus {
border-color: #80bdff;
outline: none;
box-shadow: 0 0 5px rgba(128, 189, 255, 0.5);
}
/* Button styles */
button {
width: 100%;
padding: 10px;
background-color: #28a745;
color: #fff;
border: none;
border-radius: 5px;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #218838;
}
/* Error message styles */
.error {
color: #dc3545;
margin-bottom: 20px;
font-size: 0.9rem;
}