/* Form Pooyan styles */
.pooyan-form { border: 1px solid #e5e7eb; padding: 16px; border-radius: 12px; background: #fff; }
.pooyan-topbar { display:flex; justify-content:flex-end; margin-bottom:8px; }
.pooyan-lang-toggle { border:1px solid #d1d5db; background:#f9fafb; border-radius:8px; padding:6px 10px; cursor:pointer; }
.pooyan-title { margin: 4px 0 12px 0; font-size: 1.25rem; }
.pooyan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.pooyan-field { display: flex; flex-direction: column; }
.pooyan-field label { font-weight: 600; margin-bottom: 6px; }
.pooyan-required { color: #dc2626; margin-left: 4px; }
.pooyan-field input[type=text],
.pooyan-field input[type=email],
.pooyan-field input[type=tel],
.pooyan-field input[type=file],
.pooyan-field select,
.pooyan-field textarea {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
}
.pooyan-field textarea { min-height: 120px; }
.pooyan-error { color: #dc2626; font-size: 12px; margin-top: 4px; min-height: 14px; }
.pooyan-success { margin-top: 12px; padding: 10px; background: #ecfdf5; border: 1px solid #10b981; border-radius: 8px; color: #065f46; }
.pooyan-submit { margin-top: 8px; padding: 10px 14px; border-radius: 10px; border: 1px solid #111827; background: #111827; color: #fff; cursor: pointer; }
.pooyan-submit[disabled] { opacity: .75; }
.pooyan-submit:hover { opacity: 0.9; }
.pooyan-form[dir="rtl"] input, .pooyan-form[dir="rtl"] textarea, .pooyan-form[dir="rtl"] select { text-align:right; }

/* captcha */
.pooyan-captcha-box { display:flex; flex-direction: column; gap: 6px; }
.pooyan-captcha-hint { font-size: 12px; color: #4b5563; }
.pooyan-captcha-row { display:flex; align-items:center; gap: 8px; }
.pooyan-captcha-code { letter-spacing: 6px; font-weight: 700; font-size: 18px; user-select: none; border:1px dashed #9ca3af; padding:6px 10px; width:max-content; background:#f9fafb; }
.pooyan-captcha-refresh { border:1px solid #d1d5db; background:#f3f4f6; border-radius:8px; padding:6px 10px; cursor:pointer; }
.pooyan-captcha-refresh[disabled] { opacity:.6; cursor:not-allowed; }
