-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (127 loc) · 2.65 KB
/
style.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
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
body {
font-family: 'Arial', sans-serif;
background-color: #2f3136;
color: #ffffff;
margin: 0;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
h1 {
color: #7289da;
font-size: 28px;
font-weight: 600;
margin-bottom: 20px;
text-align: center;
}
form {
display: flex;
flex-direction: column;
width: 90%;
max-width: 450px;
background-color: #40444b;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
transition: all 0.2s ease;
}
form:hover {
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
label {
margin-top: 12px;
font-size: 14px;
font-weight: 500;
color: #b9bbbe;
}
input {
margin-top: 8px;
padding: 14px 18px;
font-size: 16px;
color: #ffffff;
background-color: #40444b;
border: 1px solid #2f3136;
border-radius: 4px;
outline: none;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s ease;
}
input::placeholder {
color: #72767d;
}
input:focus {
background-color: #3c4047;
border: 1px solid #7289da;
}
button {
margin-top: 20px;
padding: 12px 24px;
background-color: #5865f2;
color: #ffffff;
border: none;
border-radius: 4px;
font-size: 14px;
font-weight: 600;
text-align: center;
cursor: pointer;
transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
button:hover {
background-color: #4752c4;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
#status {
margin-top: 20px;
padding: 12px 16px;
background-color: #23272a;
color: #b9bbbe;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
width: 90%;
max-width: 450px;
text-align: left;
font-size: 14px;
line-height: 1.5;
}
#errorLog {
list-style: none;
padding: 0;
margin-top: 10px;
width: 90%;
max-width: 450px;
}
#errorLog li {
background-color: #202225;
margin-bottom: 8px;
padding: 12px 16px;
border-radius: 4px;
color: #b9bbbe;
font-size: 13px;
line-height: 1.4;
transition: background-color 0.2s ease;
}
#errorLog li:hover {
background-color: #2f3136;
}
#errorLog li.success {
background-color: #2e8b57;
color: #ffffff;
}
#errorLog li.error {
background-color: #e74c3c;
color: #ffffff;
}
a {
color: #7289da;
text-decoration: none;
font-size: 16px;
margin: 10px 0;
display: block;
transition: color 0.2s ease;
}
a:hover {
color: #99aab5;
text-decoration: underline;
}