/* CallConnect AI — Event Lead Form */
.ccai-ev-form-wrap { max-width: 580px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.ccai-ev-form-wrap * { box-sizing: border-box; }

.ccai-ev-form-card { background: #ffffff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.09); padding: 36px 40px; }

.ccai-ev-form-title { font-size: 24px; font-weight: 800; color: #111827; margin: 0 0 8px; line-height: 1.2; }
.ccai-ev-form-subtitle { font-size: 14.5px; color: #6B7280; margin: 0 0 26px; line-height: 1.5; }

/* Form rows */
.ccai-ev-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 0; }
@media (max-width: 500px) { .ccai-ev-form-row { grid-template-columns: 1fr; } .ccai-ev-form-card { padding: 24px 20px; } }

.ccai-ev-form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.ccai-ev-form-field label { font-size: 13px; font-weight: 600; color: #374151; }
.ccai-ev-form-field input { width: 100%; padding: 12px 14px; border: 2px solid #E5E7EB; border-radius: 9px; font-size: 15px; color: #111827; background: #fff; outline: none; transition: border-color .15s, box-shadow .15s; -webkit-appearance: none; }
.ccai-ev-form-field input:focus { border-color: #7C3AED; box-shadow: 0 0 0 4px rgba(124,58,237,0.1); }
.ccai-ev-form-field input.ccai-ev-has-error { border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.ccai-ev-field-error { font-size: 12px; color: #EF4444; font-weight: 500; min-height: 16px; }

.req { color: #EF4444; }

/* Submit button */
.ccai-ev-submit-btn { display: block; width: 100%; padding: 15px; background: #7C3AED; color: #ffffff; border: none; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; transition: background .15s, transform .1s; margin-top: 6px; }
.ccai-ev-submit-btn:hover { background: #6D28D9; }
.ccai-ev-submit-btn:active { transform: scale(0.99); }
.ccai-ev-submit-btn:disabled { background: #A78BFA; cursor: not-allowed; transform: none; }

.ccai-ev-form-privacy { font-size: 11.5px; color: #9CA3AF; text-align: center; margin: 12px 0 0; line-height: 1.4; }

/* Alerts */
.ccai-ev-form-alert { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; padding: 12px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 14px; }
.ccai-ev-form-error-state { background: #FFFBEB; border: 1px solid #FDE68A; color: #92400E; padding: 14px 16px; border-radius: 10px; font-size: 13.5px; }

/* Success state */
.ccai-ev-form-success { text-align: center; padding: 40px 24px; }
.ccai-ev-success-icon { width: 60px; height: 60px; background: #ECFDF5; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; }
.ccai-ev-form-success p { font-size: 17px; font-weight: 600; color: #065F46; margin: 0; }
