/* تنسيق حقل رمز التحقّق في نموذج تسجيل WooCommerce — مقاوم لطغيان الثيم (Woodmart وغيره).
   المشكلة الشائعة: الثيم يجعل .button عرضه 100% فيدفع حقل الكود لينكمش. نُثبّت التخطيط بصلابة. */
.iwan-tt-reg .iwan-tt-reg__row {
  display: flex !important;
  gap: 8px;
  align-items: stretch;
  flex-wrap: nowrap;
}
.iwan-tt-reg .iwan-tt-reg__input {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: auto !important;
  text-align: center;
  letter-spacing: 4px;
  font-size: 18px;
  direction: ltr;
}
.iwan-tt-reg .iwan-tt-reg__btn {
  flex: 0 0 auto !important;
  width: auto !important;
  white-space: nowrap;
  padding: 0 18px;
  cursor: pointer;
}
.iwan-tt-reg .iwan-tt-reg__msg {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
}
.iwan-tt-reg .iwan-tt-reg__msg.is-error { color: #c0392b; }
.iwan-tt-reg .iwan-tt-reg__msg.is-ok    { color: #0a7a3f; }
