-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot-password.css
More file actions
131 lines (117 loc) · 2.57 KB
/
Copy pathforgot-password.css
File metadata and controls
131 lines (117 loc) · 2.57 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* Global Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Background */
body {
background-color: #121212;
font-family: 'Courier New', monospace;
color: #00ff00; /* Green text */
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
text-align: center;
}
/* Main container */
.container {
background-color: #1a1a1a;
padding: 30px;
border-radius: 8px;
box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
width: 100%;
max-width: 400px;
animation: fadeIn 1s ease-in-out;
}
/* Header */
h1 {
font-size: 28px;
color: #00ff00;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 20px;
animation: glitch 1.5s infinite alternate;
}
/* Subheading */
h2 {
font-size: 18px;
color: #ff6347;
margin-bottom: 20px;
}
/* Input fields */
input[type="email"] {
width: 100%;
padding: 15px;
margin: 10px 0;
border: 2px solid #00ff00;
border-radius: 5px;
background-color: #121212;
color: #00ff00;
font-size: 16px;
transition: border-color 0.3s ease-in-out;
}
/* Focused input */
input[type="email"]:focus {
border-color: #ff6347;
outline: none;
}
/* Button */
button {
width: 100%;
padding: 15px;
background-color: #00ff00;
border: none;
border-radius: 5px;
font-size: 18px;
color: #121212;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.3s ease;
}
/* Button Hover */
button:hover {
background-color: #ff6347;
transform: scale(1.1);
}
/* Button Click Effect */
button:active {
background-color: #ff6347;
transform: scale(1);
}
/* Status message */
#statusMessage {
font-size: 14px;
margin-top: 20px;
color: #ff6347;
font-weight: bold;
}
/* Success message */
#statusMessage.success {
color: #28a745;
}
/* Animation for glitch effect on h1 */
@keyframes glitch {
0% {
text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #ff6347, 0 0 40px #ff6347;
transform: translate(1px, 1px);
}
50% {
text-shadow: 0 0 10px #ff6347, 0 0 20px #ff6347, 0 0 30px #00ff00, 0 0 40px #00ff00;
transform: translate(-1px, -1px);
}
100% {
text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #ff6347, 0 0 40px #ff6347;
transform: translate(1px, 1px);
}
}
/* Animation for fading in */
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}