/* =========================================================
   NEW-PATIENT CONSULTATION FORM
   Reuses site form/.card/.rf-list styling; this file only adds
   what those don't already cover.
   ========================================================= */

.intake-card {
	max-width: 720px;
	margin: 0 auto;
}

.intake-card + .intake-card {
	margin-top: 1.4rem;
}

.intake-card .sec-title {
	font-family: Fraunces, Georgia, serif;
	font-size: 1.25rem;
	color: var(--navy);
	margin-bottom: 0.3rem;
}

.intake-card .sec-sub {
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 1.2rem;
}

/* Honeypot: present in the DOM (so basic bots that autofill every
   field get caught) but never visible or reachable by keyboard. */
.intake-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Consent list: same visual language as the existing red-flag
   checklist (large touch-friendly checkboxes, teal accent). */
.consent-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.consent-list label {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 0.95rem;
	color: var(--text);
	line-height: 1.5;
}
.consent-list input {
	width: 20px;
	height: 20px;
	margin: 2px 0 0;
	flex-shrink: 0;
	accent-color: var(--teal);
}
.consent-list a {
	color: var(--teal);
}

.intake-submit-note {
	font-size: 0.85rem;
	color: var(--muted);
	margin-top: 0.8rem;
	text-align: center;
}

.intake-status {
	max-width: 720px;
	margin: 0 auto 1.2rem;
	border-radius: var(--radius-md);
	padding: 16px 18px;
	line-height: 1.6;
	display: none;
}
.intake-status.is-success {
	background: color-mix(in srgb, var(--teal) 12%, var(--white));
	border: 1px solid var(--teal);
}
.intake-status.is-error {
	background: #fdeee8;
	border: 1px solid var(--accent);
}
.intake-status strong {
	display: block;
	margin-bottom: 4px;
}
