forked from arghadipmanna101/Flipkart_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.css
108 lines (93 loc) · 1.58 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
*{
padding: 0%;
margin: 0%;
box-sizing: border-box;
}
body, html {
height: 100%;
}
#outerbox{
display: flex;
justify-content: center;
align-items: center;
margin-top: 10px;
height: 100%;
}
#innerbox{
display: flex;
background-color: white;
width: 90%;
max-width: 800px;
height: auto;
margin: 20px;
}
.leftinnerbox{
background-color: #2874F0;
color: white;
font-family: sans-serif;
width: 50%;
padding: 20px;
}
.rightinnerbox{
font-family: sans-serif;
width: 50%;
padding: 20px;
}
.image-container {
display: flex;
justify-content: center;
margin-top: 30px;
}
.image-container img {
max-width: 100%;
height: auto;
}
.input-group {
display: flex;
justify-content: center;
margin-top: 20px;
}
input[type="text"], input[type="password"] {
width: 100%;
max-width: 300px;
height: 40px;
padding: 5px;
margin: 0 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}
.terms {
margin-top: 20px;
text-align: center;
}
.textm{
font-size: 12px;
width: 80%;
margin: auto;
padding-top: 10px;
}
.button-group {
display: flex;
justify-content: center;
margin-top: 20px;
}
button {
cursor: pointer;
border: none;
border-radius: 5px;
font-size: 20px;
padding: 10px 20px;
}
.login-button {
background-color: #FB641B;
color: white;
width: 100%;
max-width: 300px;
}
.signup-button {
background-color: whitesmoke;
color: #2874F0;
width: 100%;
max-width: 300px;
}