/**
 * Join as a Professional or Company (page-join.php).
 *
 * Loads alongside page-post-a-job.css (enqueued as a dependency in
 * functions.php) so .field / .field-row / .form-shell / .tip-note stay
 * shared with the Post a Job wizard rather than being redefined here —
 * this file only adds what's actually specific to the signup form.
 */

.join-role-toggle {
	display: flex;
	gap: 8px;
	background: var(--hh-cloud);
	border-radius: var(--hh-radius-l);
	padding: 6px;
	margin-bottom: 28px;
}

.join-role-tab {
	flex: 1;
	padding: 13px 16px;
	border-radius: var(--hh-radius-m);
	border: none;
	background: transparent;
	font-family: var(--hh-font-body);
	font-size: 14.5px;
	font-weight: 700;
	color: var(--hh-ink-soft);
	cursor: pointer;
	transition: all 0.15s ease;
}

.join-role-tab:hover {
	color: var(--hh-ink);
}

.join-role-tab.active {
	background: var(--hh-surface-raised);
	color: var(--hh-blue);
	box-shadow: 0 1px 3px rgba(20, 30, 60, 0.12);
}

.join-chip-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.join-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 15px;
	border-radius: 999px;
	border: 1.5px solid var(--hh-line);
	background: var(--hh-surface-raised);
	font-family: var(--hh-font-body);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--hh-ink);
	cursor: pointer;
	transition: all 0.15s ease;
}

.join-chip:hover {
	border-color: var(--hh-blue);
}

.join-chip.selected {
	background: var(--hh-blue);
	border-color: var(--hh-blue);
	color: #fff;
}

.join-chip .ci svg {
	width: 15px;
	height: 15px;
	display: block;
}

.join-terms-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	color: var(--hh-ink-soft);
	line-height: 1.5;
	margin: 22px 0 24px;
	cursor: pointer;
}

.join-terms-row input {
	margin-top: 3px;
	flex-shrink: 0;
}

.join-terms-row a {
	color: var(--hh-blue);
	font-weight: 600;
}

.join-login-note {
	text-align: center;
	font-size: 13.5px;
	color: var(--hh-ink-soft);
	margin-top: 18px;
}

.join-login-note a {
	color: var(--hh-blue);
	font-weight: 700;
}
