-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.css
123 lines (106 loc) · 2.06 KB
/
signup.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body {
margin: 0;
font-family: 'Roboto', sans-serif;
background-color: #000;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
display: flex;
width: 80%;
max-width: 1200px;
gap: 50px;
justify-content: space-between;
align-items: center;
}
.left-section {
flex: 1;
}
.left-section h1 {
font-size: 3.5em;
margin-bottom: 20px;
}
.left-section h1 span {
font-weight: bold;
color: #007bff;
}
.left-section p {
font-size: 1.3em;
color: #aaa;
line-height: 1.6;
max-width: 500px;
}
.right-section {
background-color: #1a1a1a;
padding: 40px;
border-radius: 15px;
max-width: 400px;
width: 100%;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.right-section h2 {
margin: 0;
font-size: 1.8em;
font-weight: bold;
margin-bottom: 10px;
}
.right-section label {
display: block;
margin-top: 15px;
font-size: 1em;
}
.right-section input[type="text"],
.right-section input[type="email"],
.right-section input[type="password"] {
width: 100%;
padding: 12px;
margin-top: 5px;
border: 1px solid #333;
border-radius: 8px;
background-color: #333;
color: #fff;
font-size: 1em;
}
.right-section input::placeholder {
color: #aaa;
}
.right-section button {
width: 100%;
padding: 15px;
background-color: #007bff;
border: none;
border-radius: 8px;
color: #fff;
font-size: 1.2em;
cursor: pointer;
margin-top: 20px;
transition: background-color 0.3s ease;
}
.right-section button:hover {
background-color: #0056b3;
}
.right-section .signup {
text-align: center;
margin-top: 20px;
font-size: 0.9em;
}
.right-section .signup a {
color: #007bff;
text-decoration: none;
}
.right-section .signup a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.container {
flex-direction: column;
align-items: center;
}
.left-section {
text-align: center;
margin-bottom: 30px;
}
}