blob: 3184182db47a318ef7eb8aebd35e02dc2ec582c5 (
plain)
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
|
.form-input {
@apply
h-full
w-[514px]
text-slate-950
flex
justify-center;
}
.input{
@apply w-[320px]
sm:w-[320px]
md:w-[500px]
xl:w-[514px]
lg:w-[514px]
2xl:w-[514px]
text-black
py-2
h-11
md:py-3
px-4
bg-[#FDF1C7]
rounded-3xl
focus:outline-none
;
}
.button{
@apply bg-[#FAD147]
absolute
py-1.5
rounded-3xl
text-black
md:py-2.5
px-4
h-11
z-0
;
}
|