/**
 * Public vendor signup — /vender/ + /vender/gracias/
 */

.cgmp-signup {
	background: #F9FAFB;
	padding: 32px 0 64px;
	min-height: 60vh;
}
.cgmp-signup-container {
	max-width: 920px;
	margin: 0 auto;
	padding: 0 16px;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 36px;
	align-items: start;
}
@media (max-width: 800px) { .cgmp-signup-container { grid-template-columns: 1fr; } }

/* ---- Left intro / perks ---- */
.cgmp-signup-intro h1 {
	margin: 0 0 8px;
	font-size: 30px;
	font-weight: 800;
	color: #1e73be;
	line-height: 1.15;
}
.cgmp-signup-sub {
	margin: 0 0 22px;
	font-size: 15px;
	color: #6B7280;
	line-height: 1.55;
}
.cgmp-signup-perks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.cgmp-signup-perks li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: #111827;
	line-height: 1.5;
}
.cgmp-signup-perks li span {
	font-size: 20px;
	flex-shrink: 0;
	width: 28px;
}

/* ---- Right form card ---- */
.cgmp-signup-form {
	background: #fff;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	padding: 28px 30px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.cgmp-signup-form h2 {
	margin: 0 0 18px;
	font-size: 19px;
	font-weight: 800;
	color: #111827;
}
.cgmp-signup-field {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 14px;
}
.cgmp-signup-field > span {
	font-size: 12.5px;
	font-weight: 700;
	color: #374151;
}
.cgmp-signup-field input,
.cgmp-signup-field select {
	padding: 10px 12px;
	border: 1px solid #E5E7EB;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	color: #111827;
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.cgmp-signup-field input:focus,
.cgmp-signup-field select:focus {
	outline: none;
	border-color: #1e73be;
	box-shadow: 0 0 0 3px rgba(30,115,190,0.18);
}
.cgmp-signup-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.cgmp-signup-row .cgmp-signup-field { margin-bottom: 14px; }

.cgmp-signup-honey {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.cgmp-signup-tos {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	margin: 14px 0 18px;
	font-size: 12.5px;
	color: #6B7280;
	line-height: 1.5;
}
.cgmp-signup-tos input { margin-top: 3px; flex-shrink: 0; }

.cgmp-signup-errors {
	background: #FEE2E2;
	border: 1px solid #FCA5A5;
	border-radius: 6px;
	padding: 10px 14px;
	margin-bottom: 14px;
	font-size: 13px;
	color: #991B1B;
}
.cgmp-signup-errors div { padding: 2px 0; }

.cgmp-signup-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px 24px;
	border: 0;
	border-radius: 6px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: filter 0.15s, background 0.15s;
}
.cgmp-signup-btn-primary { background: #FBBF24; color: #7C2D12; }
.cgmp-signup-btn-primary:hover { background: #F59E0B; color: #7C2D12; }
.cgmp-signup-btn-ghost { background: transparent; color: #1e73be; border: 1px solid #1e73be; }
.cgmp-signup-btn-ghost:hover { background: #EFF6FF; color: #1e73be; }
.cgmp-signup-btn-block { width: 100%; }

.cgmp-signup-footnote {
	margin: 16px 0 0;
	text-align: center;
	font-size: 13px;
	color: #6B7280;
}
.cgmp-signup-footnote a { color: #1e73be; font-weight: 700; text-decoration: none; }
.cgmp-signup-footnote a:hover { text-decoration: underline; }

/* ---- Thanks state ---- */
.cgmp-signup-thanks {
	max-width: 520px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	padding: 48px 32px;
	text-align: center;
	box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.cgmp-signup-thanks-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #ECFDF5;
	color: #16A34A;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 18px;
}
.cgmp-signup-thanks h1 {
	margin: 0 0 12px;
	font-size: 26px;
	font-weight: 800;
	color: #111827;
}
.cgmp-signup-thanks p {
	margin: 0 0 12px;
	font-size: 14px;
	color: #6B7280;
	line-height: 1.55;
}
.cgmp-signup-thanks-actions {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 22px;
}
