-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup1.css
98 lines (79 loc) · 1.75 KB
/
signup1.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* CSS styles for the signup page */
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@500&family=Orbitron&family=Pixelify+Sans&display=swap');
/* Reset default margin and padding */
body, h1, h2, h3, p, ul, li {
margin: 0;
padding: 0;
}
/* Body styles */
body {
font-family: 'Roboto', sans-serif; /* Use the desired font family */
background-color: #f4f4f4; /* Change as needed */
background-image: url(lginnn.jpg);
color: #333; /* Change text color as needed */
line-height: 1.6;
}
/* Header styles (You can customize these further) */
header {
background-color: #33333300;
color: #fff;
padding: 2px;
}
header .logo h1 {
font-family: 'Orbitron', sans-serif;
color: rgb(255, 255, 255);
padding-left: 10px;
letter-spacing: 0.9em;
}
/* Main content styles */
main {
padding: 20px;
}
section#signup {
text-align: center;
margin-top: 50px;
}
.signup-container {
width: 300px;
margin: 0 auto;
background-color: #fff;
padding: 50px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.signup-container h2 {
margin-bottom: 20px;
}
.input-group {
margin-bottom: 15px;
text-align: left;
}
.input-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.input-group input {
width: 100%;
padding: 8px;
border-radius: 3px;
border: 1px solid #ccc;
}
button {
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
border-radius: 3px;
cursor: pointer;
}
button:hover {
background-color: #555;
}
p {
margin-top: 15px;
}
p a {
color: #333;
text-decoration: underline;
}