-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppoinments.css
121 lines (112 loc) · 2 KB
/
Appoinments.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Inter", Arial, Helvetica, sans-serif;
padding: 100px;
}
.fst{
color:#07074d;
font-family: proppins;
padding:20px;
text-align: center;
}
.snd{
color:aliceblue;
background-color: #07074d;
font-family: poppins;
font-size: 22px;
text-align: center;
border-radius: 20%;
margin:10px;
}
appointbold-mb-5 {
margin-bottom: 20px;
}
.appointbold-pt-3 {
padding-top: 12px;
}
.appointbold-main-wrapper {
display: flex;
align-items: center;
justify-content: center;
padding: 48px;
margin: 20px;
}
.appointbold-form-wrapper {
margin: 0 auto;
max-width: 550px;
width: 100%;
background: white;
border:1px solid blue;
padding:20px;
}
.appointbold-form-label {
display: block;
font-weight: 500;
font-size: 16px;
color: #07074d;
margin-bottom: 12px;
}
.appointbold-form-label-2 {
font-weight: 600;
font-size: 20px;
margin-bottom: 20px;
}
.appointbold-form-input {
width: 100%;
padding: 12px 24px;
border-radius: 6px;
border: 1px solid #e0e0e0;
background: white;
font-weight: 500;
font-size: 16px;
color: #6b7280;
outline: none;
resize: none;
}
.appointbold-form-input:focus {
border-color: #6a64f1;
box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}
.appointbold-btn {
text-align: center;
font-size: 16px;
border-radius: 6px;
padding: 14px 32px;
border: none;
font-weight: 600;
background-color: #6a64f1;
color: white;
width: 100%;
cursor: pointer;
position:relative;
top:3px;
}
.appointbold-btn:hover {
box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}
.appointbold--mx-3 {
margin-left: -12px;
margin-right: -12px;
}
.appointbold-px-3 {
padding-left: 12px;
padding-right: 12px;
}
.flex {
display: flex;
}
.flex-wrap {
flex-wrap: wrap;
}
.w-full {
width: 100%;
}
@media (min-width: 540px) {
.sm\:w-half {
width: 50%;
}
}