| 1 |
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 230 160" width="230" height="160"> |
| 2 |
<!-- Background card --> |
| 3 |
<rect width="230" height="160" fill="#ffffff" rx="4"/> |
| 4 |
|
| 5 |
<!-- Header bar with IvyForms brand color --> |
| 6 |
<rect width="230" height="28" fill="#43D9B8" rx="4"/> |
| 7 |
<rect y="24" width="230" height="4" fill="#43D9B8"/> |
| 8 |
|
| 9 |
<!-- Form title placeholder --> |
| 10 |
<rect x="12" y="8" width="80" height="12" fill="white" opacity="0.9" rx="2"/> |
| 11 |
|
| 12 |
<!-- Form fields --> |
| 13 |
<!-- Field 1: Name --> |
| 14 |
<rect x="12" y="38" width="40" height="6" fill="#03455A" opacity="0.7" rx="1"/> |
| 15 |
<rect x="12" y="48" width="206" height="20" fill="#f3f4f6" stroke="#e5e7eb" stroke-width="1" rx="3"/> |
| 16 |
|
| 17 |
<!-- Field 2: Email --> |
| 18 |
<rect x="12" y="76" width="32" height="6" fill="#03455A" opacity="0.7" rx="1"/> |
| 19 |
<rect x="12" y="86" width="206" height="20" fill="#f3f4f6" stroke="#e5e7eb" stroke-width="1" rx="3"/> |
| 20 |
|
| 21 |
<!-- Field 3: Message (textarea) --> |
| 22 |
<rect x="12" y="114" width="48" height="6" fill="#03455A" opacity="0.7" rx="1"/> |
| 23 |
<rect x="12" y="124" width="206" height="24" fill="#f3f4f6" stroke="#e5e7eb" stroke-width="1" rx="3"/> |
| 24 |
|
| 25 |
<!-- Submit button --> |
| 26 |
<rect x="168" y="124" width="50" height="24" fill="#43D9B8" rx="3"/> |
| 27 |
<rect x="178" y="133" width="30" height="6" fill="white" opacity="0.9" rx="1"/> |
| 28 |
</svg> |
| 29 |
|