-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
71 lines (60 loc) · 1.06 KB
/
style2.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
body {
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
background-color: #f8f9fa;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.card {
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
padding: 30px;
max-width: 400px;
width: 100%;
}
.card h2 {
margin: 0 0 20px 0;
text-align: center;
}
.input-group {
margin-bottom: 20px;
}
.input-group label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}
.input-group input {
width: 100%;
padding: 10px;
border: 1px solid #ced4da;
border-radius: 5px;
}
button[type="submit"] {
background-color: #343a40;
color: #ffffff;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
width: 100%;
}
button[type="submit"]:hover {
background-color: #23272b;
}
p {
text-align: center;
}
p a {
color: #007bff;
text-decoration: none;
}
p a:hover {
text-decoration: underline;
}