/* Modal styles */
#two-modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  display: none; z-index: 99998;
}
#two-modal {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(560px, 92vw); background: #fff; border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35); padding: 28px; z-index: 99999;
  display: none;
}
#two-modal h3 { margin: 0 0 8px; font-size: 24px; }
#two-modal p { margin: 6px 0 12px; line-height: 1.45; }
#two-modal form { margin-top: 12px; }
#two-modal label { display:block; margin: 10px 0 4px; font-weight:600; }
#two-modal input[type="text"], #two-modal input[type="email"] {
  width: 100%; padding: 12px 14px; border: 1px solid #d0d5dd; border-radius: 8px;
}
#two-modal .two-row { display:flex; gap:10px; }
#two-modal .two-row > div { flex:1; min-width:0; }
#two-modal .two-actions { display:flex; gap:10px; margin-top: 16px; align-items:center; }
#two-modal button[type="submit"] {
  background: #e74c3c; color:#fff; border:0; padding: 12px 16px; border-radius: 8px; font-weight:700; cursor:pointer;
}
#two-modal .two-close {
  background: transparent; border:0; cursor:pointer; margin-left:auto; font-weight:600; color:#111;
}
#two-modal small { color:#475467; }
#two-modal .two-consent { display:flex; gap:10px; align-items:flex-start; margin-top:8px; }
#two-modal .two-success { color:#0a7a3b; font-weight:600; display:none; }
#two-modal .two-error { color:#c02026; font-weight:600; display:none; }
