html.vex-vpf-auth-open,
body.vex-vpf-auth-open {
	overflow: hidden !important;
}

.vex-vpf-auth-shell[hidden] { display: none !important; }
.vex-vpf-auth-shell {
	position: fixed;
	inset: 0;
	z-index: 2147483646;
	font-family: inherit;
}
.vex-vpf-auth-backdrop {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: rgba(0, 0, 0, .72) !important;
}
.vex-vpf-auth-dialog {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(94vw, 540px);
	max-height: min(88vh, 760px);
	transform: translate(-50%, -50%);
	overflow: auto;
	background: #202020;
	color: #fff;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 28px;
	box-shadow: 0 32px 90px rgba(0,0,0,.55);
	padding: 56px 56px 32px;
}
.vex-vpf-auth-close {
	position: absolute !important;
	top: 18px !important;
	right: 18px !important;
	display: grid !important;
	place-items: center !important;
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	min-height: 42px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: #333 !important;
	color: #fff !important;
}
.vex-vpf-auth-close svg { width: 22px; height: 22px; fill: currentColor; }
.vex-vpf-auth-view header { text-align: center; margin: 0 0 26px; }
.vex-vpf-auth-view h2 { margin: 0 0 10px; color: inherit; font-size: clamp(28px, 5vw, 40px); line-height: 1.1; }
.vex-vpf-auth-view header p,
.vex-vpf-auth-view > p { color: #c9c9c9; font-size: 16px; line-height: 1.5; text-align: center; }
.vex-vpf-auth-profile-icon {
	width: 112px;
	height: 112px;
	margin: 48px auto 28px;
	color: #aaa;
}
.vex-vpf-auth-profile-icon svg { width: 100%; height: 100%; fill: currentColor; }
.vex-vpf-auth-view form { display: grid; gap: 16px; }
.vex-vpf-auth-view label { display: grid; gap: 7px; color: #eee; font-weight: 650; font-size: 14px; }
.vex-vpf-auth-view input:not([type="checkbox"]) {
	box-sizing: border-box !important;
	width: 100% !important;
	height: 52px !important;
	margin: 0 !important;
	padding: 0 16px !important;
	border: 1px solid #505050 !important;
	border-radius: 12px !important;
	background: #2d2d2d !important;
	color: #fff !important;
	box-shadow: none !important;
	font: inherit !important;
}
.vex-vpf-auth-view input:focus { border-color: var(--vex-vpf-primary, #fe2c55) !important; outline: 2px solid var(--vex-vpf-primary, #fe2c55) !important; outline-offset: 1px !important; }
.vex-vpf-auth-password-field {
	position: relative;
	display: block;
}
.vex-vpf-auth-password-field input {
	padding-right: 58px !important;
}
.vex-vpf-auth-password-toggle {
	position: absolute !important;
	top: 50% !important;
	right: 6px !important;
	display: grid !important;
	place-items: center !important;
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	min-height: 42px !important;
	margin: 0 !important;
	padding: 0 !important;
	transform: translateY(-50%) !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: transparent !important;
	color: #d6d6d6 !important;
	box-shadow: none !important;
}
.vex-vpf-auth-password-toggle:hover,
.vex-vpf-auth-password-toggle:focus-visible {
	background: rgba(255, 255, 255, .08) !important;
	color: #fff !important;
}
.vex-vpf-auth-password-toggle:focus-visible {
	outline: 2px solid var(--vex-vpf-primary, #fe2c55) !important;
	outline-offset: 1px !important;
}
.vex-vpf-auth-password-icon {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
}
.vex-vpf-auth-password-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}
.vex-vpf-auth-password-icon.is-hide,
.vex-vpf-auth-password-toggle.is-visible .vex-vpf-auth-password-icon.is-show {
	display: none;
}
.vex-vpf-auth-password-toggle.is-visible .vex-vpf-auth-password-icon.is-hide {
	display: grid;
}
.vex-vpf-auth-password-strength {
	display: grid;
	gap: 8px;
	margin-top: -4px;
}
.vex-vpf-auth-password-meter {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px;
}
.vex-vpf-auth-password-meter span {
	height: 5px;
	border-radius: 999px;
	background: #484848;
	transition: background-color .18s ease, transform .18s ease;
}
.vex-vpf-auth-password-strength p {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 8px;
	margin: 0;
	color: #aaa;
	font-size: 12px;
	line-height: 1.4;
}
.vex-vpf-auth-password-strength strong {
	color: #d6d6d6;
}
.vex-vpf-auth-password-strength.is-strength-1 .vex-vpf-auth-password-meter span:nth-child(-n+1),
.vex-vpf-auth-password-strength.is-strength-2 .vex-vpf-auth-password-meter span:nth-child(-n+2),
.vex-vpf-auth-password-strength.is-strength-3 .vex-vpf-auth-password-meter span:nth-child(-n+3),
.vex-vpf-auth-password-strength.is-strength-4 .vex-vpf-auth-password-meter span:nth-child(-n+4) {
	transform: scaleY(1.18);
}
.vex-vpf-auth-password-strength.is-strength-1 .vex-vpf-auth-password-meter span:nth-child(-n+1) { background: #e5484d; }
.vex-vpf-auth-password-strength.is-strength-2 .vex-vpf-auth-password-meter span:nth-child(-n+2) { background: #f59e0b; }
.vex-vpf-auth-password-strength.is-strength-3 .vex-vpf-auth-password-meter span:nth-child(-n+3) { background: #3b82f6; }
.vex-vpf-auth-password-strength.is-strength-4 .vex-vpf-auth-password-meter span:nth-child(-n+4) { background: #22a06b; }
.vex-vpf-auth-password-strength.is-strength-1 strong { color: #ff8f95; }
.vex-vpf-auth-password-strength.is-strength-2 strong { color: #f8c76a; }
.vex-vpf-auth-password-strength.is-strength-3 strong { color: #8bbcff; }
.vex-vpf-auth-password-strength.is-strength-4 strong { color: #74d9ad; }
.vex-vpf-auth-primary,
.vex-vpf-auth-provider {
	box-sizing: border-box !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 12px !important;
	width: 100% !important;
	min-height: 54px !important;
	padding: 11px 18px !important;
	margin: 0 !important;
	border-radius: 12px !important;
	font-size: 16px !important;
	font-weight: 750 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}
.vex-vpf-auth-primary { border: 0 !important; background: var(--vex-vpf-primary, #fe2c55) !important; color: var(--vex-vpf-on-primary, #fff) !important; }
.vex-vpf-auth-primary:disabled { opacity: .65; cursor: wait; }
.vex-vpf-auth-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0 16px; color: #aaa; font-size: 13px; }
.vex-vpf-auth-divider::before,
.vex-vpf-auth-divider::after { content: ""; flex: 1; height: 1px; background: #414141; }
.vex-vpf-auth-social { display: grid; gap: 12px; }
.vex-vpf-auth-provider { border: 1px solid #555 !important; background: #393939 !important; color: #fff !important; }
.vex-vpf-auth-provider span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: #fff; color: #222; font-weight: 850; }
.vex-vpf-auth-provider.is-facebook span { background: #1877f2; color: #fff; }
.vex-vpf-auth-links,
.vex-vpf-auth-switch { margin: 20px 0 0; text-align: center; color: #bbb; }
.vex-vpf-auth-links a,
.vex-vpf-auth-links button,
.vex-vpf-auth-switch button { color: var(--vex-vpf-secondary, #ff5474) !important; text-decoration: underline !important; background: transparent !important; border: 0 !important; padding: 0 !important; margin: 0 !important; min-height: 0 !important; font: inherit !important; font-weight: 700 !important; text-transform: none !important; }
.vex-vpf-auth-status { min-height: 20px; color: #b7efc5; font-size: 14px; text-align: center; }
.vex-vpf-auth-status.is-error { color: #ff9baa; }
.vex-vpf-auth-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

@media (max-width: 782px) {
	.vex-vpf-auth-dialog {
		position: absolute;
		inset: 0;
		width: 100%;
		max-height: none;
		transform: none;
		border: 0;
		border-radius: 0;
		padding: calc(76px + env(safe-area-inset-top, 0px)) 28px calc(32px + env(safe-area-inset-bottom, 0px));
		background: #fff;
		color: #111;
	}
	.vex-vpf-auth-close { top: calc(18px + env(safe-area-inset-top, 0px)) !important; left: 18px !important; right: auto !important; background: transparent !important; color: #111 !important; }
	.vex-vpf-auth-view header p,
	.vex-vpf-auth-view > p { color: #666; }
	.vex-vpf-auth-view input:not([type="checkbox"]) { background: #fff !important; color: #111 !important; border-color: #d8d8d8 !important; }
	.vex-vpf-auth-view label { color: #222; }
	.vex-vpf-auth-provider { background: #fff !important; color: #111 !important; border-color: #ddd !important; }
	.vex-vpf-auth-divider { color: #777; }
	.vex-vpf-auth-divider::before,
	.vex-vpf-auth-divider::after { background: #ddd; }
	.vex-vpf-auth-profile-icon { margin-top: 100px; color: #aaa; }
	.vex-vpf-auth-view[data-vex-vpf-auth-view="profile"] .vex-vpf-auth-primary { margin-top: 30px !important; }
}

@media (prefers-reduced-motion: reduce) {
	.vex-vpf-auth-shell *, .vex-vpf-auth-shell *::before, .vex-vpf-auth-shell *::after { transition: none !important; animation: none !important; }
}

/* Version 0.10.13: authentication follows the selected light appearance. */
body.vex-vpf-theme-light .vex-vpf-auth-dialog {
	border-color: #dedee3;
	background: #fff;
	color: #16161a;
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
}

body.vex-vpf-theme-light .vex-vpf-auth-close {
	background: #f1f1f2 !important;
	color: #16161a !important;
}

body.vex-vpf-theme-light .vex-vpf-auth-view header p,
body.vex-vpf-theme-light .vex-vpf-auth-view > p,
body.vex-vpf-theme-light .vex-vpf-auth-links,
body.vex-vpf-theme-light .vex-vpf-auth-switch,
body.vex-vpf-theme-light .vex-vpf-auth-divider {
	color: #6b6b73;
}

body.vex-vpf-theme-light .vex-vpf-auth-view label {
	color: #16161a;
}

body.vex-vpf-theme-light .vex-vpf-auth-view input:not([type="checkbox"]),
body.vex-vpf-theme-light .vex-vpf-auth-provider {
	border-color: #d8d8dd !important;
	background: #fff !important;
	color: #16161a !important;
	-webkit-text-fill-color: #16161a !important;
}

body.vex-vpf-theme-light .vex-vpf-auth-divider::before,
body.vex-vpf-theme-light .vex-vpf-auth-divider::after {
	background: #dedee3;
}

/* Version 0.12.1: one-time sign-in invitation. */
.vex-vpf-auth-welcome {
	text-align: center;
}
.vex-vpf-auth-welcome-icon {
	display: grid;
	place-items: center;
	width: 92px;
	height: 92px;
	margin: 4px auto 24px;
	border: 5px solid #fff;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--vex-vpf-primary, #fe2c55), var(--vex-vpf-secondary, #6c4cff));
	color: #fff;
	box-shadow: 0 14px 40px rgba(108, 76, 255, .3);
}
.vex-vpf-auth-welcome-icon svg {
	width: 48px;
	height: 48px;
	fill: currentColor;
}
.vex-vpf-auth-welcome header {
	margin-bottom: 24px;
}
.vex-vpf-auth-welcome h2 {
	font-size: clamp(28px, 5vw, 38px);
}
.vex-vpf-auth-welcome-dismiss {
	width: 100% !important;
	min-height: 48px !important;
	margin: 10px 0 0 !important;
	padding: 8px 16px !important;
	border: 0 !important;
	background: transparent !important;
	color: inherit !important;
	font: inherit !important;
	font-weight: 700 !important;
	text-transform: none !important;
}

@media (max-width: 782px) {
	.vex-vpf-auth-shell.is-welcome .vex-vpf-auth-dialog {
		inset: auto;
		top: 50%;
		left: 50%;
		width: min(88vw, 390px);
		max-height: calc(100vh - 40px);
		transform: translate(-50%, -50%);
		border: 1px solid #e1e1e5;
		border-radius: 18px;
		padding: 62px 28px 22px;
		box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
	}
	.vex-vpf-auth-shell.is-welcome .vex-vpf-auth-close {
		top: 14px !important;
		left: auto !important;
		right: 14px !important;
		background: transparent !important;
	}
	.vex-vpf-auth-welcome-icon {
		width: 82px;
		height: 82px;
		margin-bottom: 20px;
	}
	.vex-vpf-auth-welcome-icon svg {
		width: 42px;
		height: 42px;
	}
	.vex-vpf-auth-welcome h2 {
		font-size: 28px;
	}
}

/* Version 0.13.2: registration password visibility and live strength feedback. */
body.vex-vpf-theme-light .vex-vpf-auth-password-toggle {
	color: #555 !important;
}
body.vex-vpf-theme-light .vex-vpf-auth-password-toggle:hover,
body.vex-vpf-theme-light .vex-vpf-auth-password-toggle:focus-visible {
	background: #f1f1f4 !important;
	color: #111 !important;
}
body.vex-vpf-theme-light .vex-vpf-auth-password-meter span {
	background: #dedee3;
}
body.vex-vpf-theme-light .vex-vpf-auth-password-strength p {
	color: #6b6b73;
}
body.vex-vpf-theme-light .vex-vpf-auth-password-strength strong {
	color: #323238;
}
body.vex-vpf-theme-light .vex-vpf-auth-password-strength.is-strength-1 strong { color: #c83238; }
body.vex-vpf-theme-light .vex-vpf-auth-password-strength.is-strength-2 strong { color: #a86400; }
body.vex-vpf-theme-light .vex-vpf-auth-password-strength.is-strength-3 strong { color: #1d5fbf; }
body.vex-vpf-theme-light .vex-vpf-auth-password-strength.is-strength-4 strong { color: #147a50; }

@media (max-width: 782px) {
	.vex-vpf-auth-password-toggle {
		color: #555 !important;
	}
	.vex-vpf-auth-password-toggle:hover,
	.vex-vpf-auth-password-toggle:focus-visible {
		background: #f1f1f4 !important;
		color: #111 !important;
	}
	.vex-vpf-auth-password-meter span {
		background: #dedee3;
	}
	.vex-vpf-auth-password-strength p {
		color: #6b6b73;
	}
	.vex-vpf-auth-password-strength strong {
		color: #323238;
	}
	.vex-vpf-auth-password-strength.is-strength-1 strong { color: #c83238; }
	.vex-vpf-auth-password-strength.is-strength-2 strong { color: #a86400; }
	.vex-vpf-auth-password-strength.is-strength-3 strong { color: #1d5fbf; }
	.vex-vpf-auth-password-strength.is-strength-4 strong { color: #147a50; }
}

/* Version 0.13.3: email confirmation and signed-in success state. */
.vex-vpf-auth-confirmation-sent,
.vex-vpf-auth-confirmed,
.vex-vpf-auth-reset-sent,
.vex-vpf-auth-reset-complete {
	text-align: center;
}
.vex-vpf-auth-confirmation-icon,
.vex-vpf-auth-confirmed-icon,
.vex-vpf-auth-reset-icon,
.vex-vpf-auth-reset-complete-icon {
	display: grid;
	place-items: center;
	width: 88px;
	height: 88px;
	margin: 4px auto 24px;
	border-radius: 50%;
	color: #fff;
	box-shadow: 0 14px 38px rgba(34, 160, 107, .24);
}
.vex-vpf-auth-confirmation-icon,
.vex-vpf-auth-reset-icon {
	background: linear-gradient(145deg, var(--vex-vpf-primary, #fe2c55), var(--vex-vpf-secondary, #6c4cff));
}
.vex-vpf-auth-confirmed-icon,
.vex-vpf-auth-reset-complete-icon {
	background: #22a06b;
}
.vex-vpf-auth-confirmation-icon svg,
.vex-vpf-auth-confirmed-icon svg,
.vex-vpf-auth-reset-icon svg,
.vex-vpf-auth-reset-complete-icon svg {
	width: 44px;
	height: 44px;
	fill: currentColor;
}
.vex-vpf-auth-confirmation-sent header,
.vex-vpf-auth-confirmed header,
.vex-vpf-auth-reset-sent header,
.vex-vpf-auth-reset-complete header {
	margin-bottom: 24px;
}
.vex-vpf-auth-confirmation-sent header p,
.vex-vpf-auth-confirmed header p,
.vex-vpf-auth-reset-sent header p,
.vex-vpf-auth-reset-complete header p {
	max-width: 440px;
	margin-right: auto;
	margin-left: auto;
}

@media (max-width: 782px) {
	.vex-vpf-auth-confirmed-shell .vex-vpf-auth-dialog {
		inset: auto;
		top: 50%;
		left: 50%;
		width: min(88vw, 410px);
		max-height: calc(100vh - 40px);
		transform: translate(-50%, -50%);
		border: 1px solid #e1e1e5;
		border-radius: 18px;
		padding: 62px 28px 24px;
		box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
	}
	.vex-vpf-auth-confirmed-shell .vex-vpf-auth-close {
		top: 14px !important;
		left: auto !important;
		right: 14px !important;
	}
	.vex-vpf-auth-confirmation-icon,
	.vex-vpf-auth-confirmed-icon,
	.vex-vpf-auth-reset-icon,
	.vex-vpf-auth-reset-complete-icon {
		width: 80px;
		height: 80px;
		margin-bottom: 20px;
	}
	.vex-vpf-auth-confirmation-icon svg,
	.vex-vpf-auth-confirmed-icon svg,
	.vex-vpf-auth-reset-icon svg,
	.vex-vpf-auth-reset-complete-icon svg {
		width: 40px;
		height: 40px;
	}
}

/* Version 0.48.1: password recovery remains inside the authentication modal. */
.vex-vpf-auth-view[data-vex-vpf-auth-view="reset-password"] form[aria-busy="true"] {
	opacity: .82;
}
.vex-vpf-auth-view[data-vex-vpf-auth-view="reset-password"] input:disabled,
.vex-vpf-auth-view[data-vex-vpf-auth-view="reset-password"] button:disabled {
	cursor: wait;
}
.vex-vpf-auth-reset-sent .vex-vpf-auth-primary,
.vex-vpf-auth-reset-complete .vex-vpf-auth-primary {
	margin-top: 6px !important;
}

/* Optional marketplace registration fields. */
.vex-vpf-marketplace-registration{border:0;padding:0;margin:4px 0 16px}.vex-vpf-marketplace-registration legend{font-weight:800;margin-bottom:9px}.vex-vpf-marketplace-account-option{display:flex!important;align-items:flex-start;gap:10px!important;padding:12px;border:1px solid currentColor;border-radius:12px;margin-bottom:9px!important}.vex-vpf-marketplace-account-option input{width:auto!important;min-height:auto!important;margin-top:3px}.vex-vpf-marketplace-account-option span{display:grid;gap:3px}.vex-vpf-marketplace-account-option small{font-weight:400;line-height:1.35;opacity:.72}.vex-vpf-marketplace-business[hidden]{display:none!important}

/* Version 0.34.2: mandatory six-digit email OTP. */
.vex-vpf-auth-otp { text-align: center; }
.vex-vpf-auth-otp header { margin-bottom: 20px; }
.vex-vpf-auth-otp-destination {
	display: grid;
	gap: 6px;
	margin: 0 0 24px;
	padding: 16px 18px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 14px;
	background: rgba(255,255,255,.06);
	color: #c8c8cf;
	font-size: 14px;
	line-height: 1.45;
}
.vex-vpf-auth-otp-destination strong { color: #fff; font-size: 16px; overflow-wrap: anywhere; }
.vex-vpf-auth-otp-inputs {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 18px;
}
.vex-vpf-auth-otp-inputs input {
	width: 100% !important;
	min-width: 0 !important;
	height: 58px !important;
	padding: 0 !important;
	border: 1px solid #50505a !important;
	border-radius: 12px !important;
	background: #2c2c31 !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	font-size: 25px !important;
	font-weight: 800 !important;
	line-height: 58px !important;
	text-align: center !important;
	caret-color: var(--vex-vpf-primary, #fe2c55);
}
.vex-vpf-auth-otp-inputs input:focus {
	border-color: var(--vex-vpf-primary, #fe2c55) !important;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--vex-vpf-primary, #fe2c55) 24%, transparent) !important;
	outline: none !important;
}
.vex-vpf-auth-otp-resend {
	min-height: 44px !important;
	margin: 14px auto 0 !important;
	padding: 6px 12px !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--vex-vpf-secondary, #ff5474) !important;
	font: inherit !important;
	font-weight: 750 !important;
	text-transform: none !important;
}
.vex-vpf-auth-otp-resend:disabled { color: #8c8c95 !important; cursor: not-allowed; }
body.vex-vpf-theme-light .vex-vpf-auth-otp-destination {
	border-color: #dfe1e7;
	background: #f5f7fb;
	color: #646a76;
}
body.vex-vpf-theme-light .vex-vpf-auth-otp-destination strong { color: #171a21; }
body.vex-vpf-theme-light .vex-vpf-auth-otp-inputs input {
	border-color: #d2d5dc !important;
	background: #fff !important;
	color: #171a21 !important;
	-webkit-text-fill-color: #171a21 !important;
}
@media (max-width: 420px) {
	.vex-vpf-auth-otp-inputs { gap: 6px; }
	.vex-vpf-auth-otp-inputs input { height: 52px !important; border-radius: 10px !important; font-size: 22px !important; line-height: 52px !important; }
}

/* Dealer onboarding registration fields. */
.vex-vpf-auth-name-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.vex-vpf-auth-consent{display:flex!important;align-items:flex-start;gap:9px;font-weight:400!important;line-height:1.4}
.vex-vpf-auth-consent input{width:auto!important;min-width:18px;margin-top:2px}
.vex-vpf-auth-consent a{text-decoration:underline}
.vex-vpf-auth-consent.is-optional{opacity:.9}
@media (max-width:520px){.vex-vpf-auth-name-grid{grid-template-columns:1fr}}
