/* TravelDesk Public Form Styles */
.td-form-container { max-width: 700px; margin: 40px auto; padding: 0 20px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.td-form-header { text-align: center; margin-bottom: 32px; }
.td-form-header h1 { font-size: 1.75rem; color: #1a1a2e; margin-bottom: 8px; }
.td-form-header p { color: #64748b; }

.td-traveler-section { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; margin-bottom: 20px; }
.td-traveler-section legend { font-weight: 600; color: #e94560; padding: 0 8px; }

.td-row { margin-bottom: 16px; }
.td-row label { display: block; margin-bottom: 6px; font-size: 0.875rem; font-weight: 500; color: #334155; }
.td-row input, .td-row select { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 1rem; }
.td-row input:focus, .td-row select:focus { outline: none; border-color: #e94560; box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1); }
.td-row small { color: #94a3b8; font-size: 0.75rem; }
.td-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.td-terms { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; margin-bottom: 24px; }
.td-terms legend { font-weight: 600; color: #334155; }
.td-terms-text { max-height: 200px; overflow-y: auto; background: #fff; padding: 16px; border-radius: 8px; margin-bottom: 16px; font-size: 0.875rem; color: #64748b; }
.td-terms label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.td-terms input[type="checkbox"] { width: auto; }

.td-btn { display: block; width: 100%; padding: 16px; background: linear-gradient(135deg, #e94560 0%, #d63850 100%); color: #fff; border: none; border-radius: 10px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.td-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3); }
.td-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.td-success, .td-error { text-align: center; padding: 40px; background: #fff; border-radius: 12px; }
.td-success h2 { color: #10b981; margin-bottom: 16px; }
.td-error { color: #ef4444; }

@media (max-width: 600px) { .td-row-2 { grid-template-columns: 1fr; } }
