/* Shared Partner Program and Contact Us form. Keep new forms on this component. */
.pga-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; padding: clamp(22px, 2vw, 32px); border-radius: 16px; background: #fff; box-shadow: inset 0 0 0 1px var(--line), 0 24px 54px rgba(15, 28, 77, .1); }
.pga-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; color: var(--mut); }
.pga-form label small { font-weight: 500; }
.pga-form .full { grid-column: 1 / -1; }
.pga-form input, .pga-form select, .pga-form textarea { font: inherit; font-size: 15px; font-weight: 500; color: var(--ink); padding: 12px 14px; border: 0; border-radius: 10px; background: #f6f8fc; box-shadow: inset 0 0 0 1px #dfe4f0; resize: vertical; }
.pga-form input:focus, .pga-form select:focus, .pga-form textarea:focus { outline: 0; box-shadow: inset 0 0 0 2px var(--acc); }
.pga-form .pg-btn { margin-top: 4px; width: 100%; }
.pga-note { font-size: 13px; color: var(--mut); text-align: center; }
.pga-form.sent .pga-note { color: #13936a; font-weight: 700; }
.pga-form, .pga-form label { min-width: 0; }
.pga-form input, .pga-form select, .pga-form textarea { min-width: 0; width: 100%; }
@media (max-width: 640px) { .pga-form { grid-template-columns: 1fr; } }
