-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (43 loc) · 785 Bytes
/
Copy pathstyle.css
File metadata and controls
48 lines (43 loc) · 785 Bytes
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
body {
font-family: Arial, sans-serif;
background: #f4f6f9;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.login-box {
background: white;
padding: 30px;
border-radius: 6px;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
width: 300px;
}
.login-box h2 {
text-align: center;
margin-bottom: 20px;
}
input {
width: 100%;
padding: 10px;
margin-top: 8px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
width: 100%;
background-color: #0073e6;
color: white;
border: none;
padding: 10px;
font-size: 16px;
border-radius: 4px;
cursor: pointer;
}
.disclaimer {
font-size: 11px;
color: #777;
margin-top: 10px;
text-align: center;
}