Subbu1304 commited on
Commit
ab75f2e
·
verified ·
1 Parent(s): 262e513

Update static/signup.css

Browse files
Files changed (1) hide show
  1. static/signup.css +50 -0
static/signup.css CHANGED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ background-color: #f4f4f4;
4
+ display: flex;
5
+ justify-content: center;
6
+ align-items: center;
7
+ height: 100vh;
8
+ margin: 0;
9
+ }
10
+
11
+ .signup-container {
12
+ background-color: #fff;
13
+ padding: 20px;
14
+ border-radius: 8px;
15
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
16
+ width: 300px;
17
+ }
18
+
19
+ h2 {
20
+ text-align: center;
21
+ margin-bottom: 20px;
22
+ }
23
+
24
+ .input-group {
25
+ margin-bottom: 15px;
26
+ }
27
+
28
+ input[type="text"],
29
+ input[type="email"],
30
+ input[type="password"] {
31
+ width: 100%;
32
+ padding: 8px;
33
+ margin-top: 5px;
34
+ border-radius: 4px;
35
+ border: 1px solid #ddd;
36
+ }
37
+
38
+ button {
39
+ width: 100%;
40
+ padding: 10px;
41
+ background-color: #4CAF50;
42
+ color: white;
43
+ border: none;
44
+ border-radius: 4px;
45
+ cursor: pointer;
46
+ }
47
+
48
+ button:hover {
49
+ background-color: #45a049;
50
+ }