/* Shared styles */
.pipta-registration-form, .pipta-contact-form { width:100%; max-width:100%; margin:0 auto; padding:1rem; border-radius:8px; background:#fff; box-shadow:0 0 0 1px #e5e7eb; }
label { display:block; margin-bottom:1rem; font-weight:600; color:#1f2937; }
input[type=text], input[type=email], select, textarea { width:100%; padding:10px 12px; border:1px solid #d1d5db; border-radius:6px; box-sizing:border-box; }
.req { color:#ef4444; }
.pipta-submit { background:#084325; color:#fff; border:none; padding:10px 16px; border-radius:9999px; cursor:pointer; }
.pipta-submit:hover { background:#084325; }
.pipta-errors { background:#fef2f2; color:#b91c1c; padding:8px 12px; border-radius:6px; margin-bottom:1rem; }
.pipta-success { background:#f0fdf4; color:#15803d; padding:8px 12px; border-radius:6px; margin-bottom:1rem; }
.pipta-contact-form .pipta-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.pipta-contact-form .pipta-full { grid-column:1 / -1; }
@media (max-width:768px){ .pipta-contact-form .pipta-grid { grid-template-columns:1fr; } }
