-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbusiness.css
73 lines (62 loc) · 1.29 KB
/
business.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
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-image: url('background.jpg');
background-size: cover;
background-repeat: no-repeat;
}
.signup-container {
text-align: center;
padding: 50px;
margin: 100px auto;
background-color: rgba(255, 255, 255, 0.8);
width: 300px;
border-radius: 10px;
}
.signup-container h1 {
color: #333;
}
.form-group {
font-size: large;
margin: 10px 0;
}
.form-group label {
display: block;
text-align: left;
margin-bottom: 5px;
color: #333;
}
.form-group input {
width: 100%;
padding: 10px;
box-sizing: border-box;
}
.error {
border: 2px solid red;
}
button {
padding: 10px 20px;
background-color: #3498db;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #021c2d;
}
footer {
text-align: center;
background-color: #022033;
color: #fff;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
}