-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (57 loc) · 1.15 KB
/
Copy pathstyle.css
File metadata and controls
64 lines (57 loc) · 1.15 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
body {
min-height: 100vh;
background: #0a0e14;
color: #e0e7ff;
font-family: system-ui, sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.error-message {
color: #f85149;
font-size: 0.95rem;
margin-top: 1rem;
min-height: 1.2rem;
display: none;
}
.input-group {
position: relative;
margin-bottom: 1.2rem;
}
.icon {
position: absolute;
left: 1rem;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 20px;
color: #8b949e;
pointer-events: none;
}
input {
width: 100%;
height: 44px;
padding: 0 1rem 0 2.8rem;
background: #0d1117;
border: 1px solid #30363d;
border-radius: 6px;
color: #e6edf3;
font-size: 1rem;
line-height: 1.4;
}
button {
width: 100%;
padding: 0.95rem;
background: #238636;
color: white;
border: none;
border-radius: 6px;
font-size: 1.05rem;
cursor: pointer;
margin-top: 0.8rem;
}