-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
220 lines (191 loc) · 4 KB
/
style.css
File metadata and controls
220 lines (191 loc) · 4 KB
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;600;700&family=Poppins:wght@100;200;300;400;500;600;700;800&family=Vina+Sans&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
section{
padding: 100px 15% 120px;
width: 100%;
height: 100vh;
}
.form_container{
background: #fff;
border-radius: 30px;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
margin: 0 auto;
width: 80%;
height: 70vh;
display: grid;
grid-template-columns: repeat(2, 1fr);
}
.form_grid1{
width: 100%;
height: auto;
padding: 1rem 2rem;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-top-left-radius: 30px;
border-bottom-left-radius: 30px;
border-top-right-radius: 9rem;
border-bottom-right-radius: 9rem;
background: linear-gradient(to bottom, #8e44ad, #000000);
}
.form_grid1 h1{
color: #fff;
font-size: 2.4rem;
font-weight: 700;
margin-bottom: 3rem;
text-transform: capitalize;
}
.form_grid1 p{
color: #fff;
margin-bottom: 2rem;
margin-top: -1.2rem;
font-weight: 400;
}
.form_grid1 button{
display: inline-block;
/* width: 100px;
height: auto; */
padding: 0.50rem 2.4rem;
font-size: 1rem;
font-weight: 600;
border: 1px solid #fff;
border-radius: 6px;
color: #fff;
background: transparent;
transition: 0.3s ease-in-out;
}
.form_grid1 button:hover{
background: linear-gradient(to bottom, #6c3483, #000000);
cursor: pointer;
}
.form_grid2{
width: 100%;
height: auto;
display: flex;
flex-direction: column;
align-items: center;
padding: 0.50rem 2.4rem;
}
.form_grid2 h2{
font-size: 2rem;
font-weight: 700;
margin-top: 3rem;
margin-bottom: 1rem;
}
.icon{
width: 100%;
height: auto;
margin-bottom: 1rem;
display: flex;
align-items: center;
justify-content: center;
}
.icon i{
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 5px;
background: #fff;
border-radius: 6px;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.form_grid2 p{
margin-bottom: 1rem;
font-size: 16px;
font-weight: 500;
}
.form_grid2 input{
width: 100%;
height: auto;
padding: 0.60rem 1rem;
margin-bottom: 2rem;
border-radius: 6px;
}
input{
outline: none;
border: none;
background: #f5f0f0;
font-size: 16px;
color: #000;
font-weight: 400;
}
.form_grid2 button{
display: inline-block;
padding: 0.50rem 2.4rem;
font-size: 1rem;
font-weight: 600;
color: #fff;
border: 1px solid #000;
border-radius: 8px;
background: linear-gradient(to bottom, #6c3483, #000000);
}
.form_grid2 button:hover{
cursor: pointer;
}
@media screen and (max-width:1200px) {
section{
margin: 0 auto;
padding: 9rem 5%;
}
.form_container{
width: 100%;
height: 70vh;
}
}
@media screen and (max-width:991px){
section{
padding: 9rem 3%;
}
}
@media screen and (max-width:768px) {
section{
padding:1rem 3%;
}
.form_container{
display: grid;
grid-template-columns: 1fr;
width: 100%;
height: 100vh;
border-radius: 2px;
}
.form_grid1{
width: 100%;
height: auto;
border-radius: 2px;
}
}
@media screen and (max-width:375px) {
.form_container{
width: 100%;
height: auto;
padding: 2%;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.form_grid1{
width: 100%;
height: 50vh;
border-bottom-left-radius: 100px;
border-bottom-right-radius: 100px;
}
.form_grid1 h1{
font-size: 2rem;
}
.form_grid1 p{
margin-top: -30px;
}
.form_grid2{
padding: 1rem;
}
.form_grid2 h2{
font-size: 1.6rem;
}
}