-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (52 loc) · 907 Bytes
/
Copy pathstyle.css
File metadata and controls
60 lines (52 loc) · 907 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
49
50
51
52
53
54
55
56
57
58
59
60
body {
margin: 0;
height: 100vh;
font-family: Arial;
background: linear-gradient(120deg, #4e54c8, #8f94fb);
display: flex;
justify-content: center;
align-items: center;
}
.container {
background: white;
width: 320px;
padding: 30px;
border-radius: 10px;
text-align: center;
box-shadow: 0px 10px 25px rgba(0,0,0,0.3);
}
h2 {
margin-bottom: 5px;
}
p {
color: gray;
}
input {
width: 100%;
padding: 10px;
margin-top: 15px;
border-radius: 5px;
border: 1px solid #ccc;
outline: none;
}
input:focus {
border-color: #4e54c8;
}
button {
width: 100%;
margin-top: 20px;
padding: 12px;
background: #4e54c8;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background: #2c2fa3;
}
#msg {
margin-top: 15px;
font-weight: bold;
}