/* ============================================================
 * PlayCortex - Auth popup (sign up, 2-step)
 * Figma nodes: 323:889 (step 1), 488:2251 (step 2)
 * ============================================================ */

.pc-auth { position: fixed; inset: 0; z-index: 10000; display: none; align-items: flex-start; justify-content: center; padding: 72px 24px 24px; overflow-y: auto; }
.pc-auth.is-open { display: flex; }
.pc-auth[hidden] { display: none; }

.pc-auth__overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.75); }

.pc-auth__card {
	position: relative;
	width: 100%;
	max-width: 873px;
	background: #fff;
	border-radius: 8px;
	padding: 48px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.pc-auth__close {
	position: absolute; top: 16px; right: 16px;
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	background: transparent; border: 0; border-radius: 8px;
	color: #1c1c19; cursor: pointer; padding: 0;
}
.pc-auth__close:hover { background: #f4f7f7; }
.pc-auth__close:focus-visible { outline: 2px solid #ff6a00; outline-offset: 2px; }

/* steps */
.pc-auth__step { display: none; flex-direction: column; gap: 24px; align-items: center; width: 100%; }
.pc-auth__step.is-active { display: flex; }

/* head */
.pc-auth__head { display: flex; flex-direction: column; gap: 16px; align-items: center; }

.pc-auth__badge {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 16px;
	background: rgba(212, 82, 26, 0.2);
	border: 1px solid #ff6a00;
	border-radius: 8px;
	font: 600 12px/12px Montserrat, system-ui, sans-serif;
	color: #ff6a00;
	letter-spacing: 0.04em;
}
.pc-auth__badge--lg { font-size: 16px; line-height: 24px; letter-spacing: 0; }
.pc-auth__badge-dot { width: 5px; height: 5px; background: #ff6a00; opacity: 0.85; display: inline-block; }

.pc-auth__title { margin: 0; font: 700 24px/32px Montserrat, sans-serif; color: #1c1c19; text-align: center; }
.pc-auth__sub   { margin: 0; font: 500 14px/22px Montserrat, sans-serif; color: #746a66; text-align: center; }

/* socials */
.pc-auth__socials { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.pc-auth__social {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 16px;
	background: #fff;
	border: 1px solid #dcdbdd;
	border-radius: 8px;
	color: #746a66;
	font: 400 16px/24px Montserrat, sans-serif;
	text-decoration: none;
	transition: border-color .15s, box-shadow .15s;
}
.pc-auth__social:hover  { border-color: #1c1c19; color: #1c1c19; }
.pc-auth__social:focus-visible { outline: 2px solid #ff6a00; outline-offset: 2px; }
.pc-auth__social.is-placeholder { opacity: 0.7; cursor: help; }
.pc-auth__social.is-placeholder:hover { border-color: #dcdbdd; color: #746a66; }

/* divider */
.pc-auth__divider { display: flex; align-items: center; gap: 16px; width: 100%; max-width: 745px; }
.pc-auth__divider-line { flex: 1; height: 1px; background: #dcdbdd; }
.pc-auth__divider-text { font: 500 16px/24px Montserrat, sans-serif; color: #1c1c19; white-space: nowrap; }

/* form */
.pc-auth__form { display: flex; flex-direction: column; gap: 24px; width: 100%; }
.pc-auth__row { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.pc-auth__field { flex: 1 1 calc(50% - 12px); min-width: 0; display: flex; flex-direction: column; gap: 12px; }

.pc-auth__label { font: 600 16px/24px Montserrat, sans-serif; color: #1c1c19; display: inline-flex; align-items: flex-start; }
.pc-auth__req { color: #ff6a00; font-weight: 700; margin-left: 2px; }

.pc-auth__input-wrap {
	display: flex; align-items: center; gap: 8px;
	padding: 9px 16px;
	background: #fff;
	border: 1px solid #dcdbdd;
	border-radius: 8px;
	transition: border-color .15s, box-shadow .15s;
}
.pc-auth__input-wrap:focus-within { border-color: #ff6a00; box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12); }
.pc-auth__input-wrap.is-readonly { background: #faf8f5; border-color: rgba(116, 106, 102, 0.25); }
.pc-auth__input-wrap.is-readonly:focus-within { box-shadow: none; border-color: rgba(116, 106, 102, 0.25); }

.pc-auth__icon { flex-shrink: 0; color: #746a66; }

.pc-auth__input {
	flex: 1; min-width: 0;
	background: transparent;
	border: 0; outline: 0;
	padding: 0;
	font: 400 16px/24px Montserrat, sans-serif;
	color: #1c1c19;
}
.pc-auth__input::placeholder { font-style: italic; color: #746a66; }
.pc-auth__input:focus { outline: 0; }
.pc-auth__input[type="date"] { font-family: Montserrat, sans-serif; color: #1c1c19; }
.pc-auth__input[type="number"]::-webkit-outer-spin-button,
.pc-auth__input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pc-auth__input[type="number"] { -moz-appearance: textfield; appearance: textfield; }

/* Kill Chrome/Safari autofill blue/yellow background */
.pc-auth__input:-webkit-autofill,
.pc-auth__input:-webkit-autofill:hover,
.pc-auth__input:-webkit-autofill:focus,
.pc-auth__input:-webkit-autofill:active,
.pc-auth__input-bare:-webkit-autofill,
.pc-auth__input-bare:-webkit-autofill:hover,
.pc-auth__input-bare:-webkit-autofill:focus,
.pc-auth__input-bare:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
	-webkit-text-fill-color: #1c1c19 !important;
	caret-color: #1c1c19;
	transition: background-color 9999s ease-out 0s;
}

.pc-auth__readonly {
	flex: 1; min-width: 0;
	font: 500 16px/24px Montserrat, sans-serif;
	color: #1c1c19;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.pc-auth__hint { margin: 0; font: 400 12px/20px Montserrat, sans-serif; color: #746a66; }

/* phone field */
.pc-auth__phone {
	display: flex; align-items: stretch;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(116, 106, 102, 0.25);
	background: rgba(242, 238, 230, 0.06);
}
.pc-auth__phone:focus-within { border-color: #ff6a00; box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12); }
.pc-auth__phone.is-readonly { background: #faf8f5; }
.pc-auth__phone.is-readonly:focus-within { box-shadow: none; }
.pc-auth__phone-cc {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 9px 17px;
	background: rgba(242, 238, 230, 0.5);
	border-right: 1px solid rgba(116, 106, 102, 0.25);
	font: 500 14px/20px Montserrat, sans-serif;
	color: #1c1c19;
	white-space: nowrap;
}
.pc-auth__input--phone { padding: 9px 17px; }

/* password eye */
.pc-auth__input--password { font-family: Montserrat, sans-serif; }
.pc-auth__eye {
	background: transparent; border: 0; padding: 0; cursor: pointer;
	color: #746a66;
	display: inline-flex; align-items: center; justify-content: center;
	width: 24px; height: 24px; flex-shrink: 0;
}
.pc-auth__eye:hover { color: #1c1c19; }
.pc-auth__eye:focus-visible { outline: 2px solid #ff6a00; outline-offset: 2px; border-radius: 4px; }

/* sport combo - submit-story style (input + listbox) */
.pc-auth__combo { position: relative; width: 100%; }

.pc-auth__input--icon {
	display: flex; align-items: center; gap: 4px;
	padding: 12px 16px;
	background: #fff;
	border: 1px solid rgba(168, 166, 165, 0.5);
	border-radius: 8px;
	transition: border-color .15s, box-shadow .15s;
}
.pc-auth__input--icon:focus-within { border-color: #ff6a00; box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15); }

.pc-auth__input-bare {
	flex: 1; min-width: 0;
	background: transparent; border: 0; outline: 0; padding: 0;
	font: 400 16px/24px Montserrat, sans-serif;
	color: #1c1c19;
}
.pc-auth__input-bare::placeholder { font-style: italic; color: #746a66; }
.pc-auth__input-bare::-webkit-calendar-picker-indicator,
.pc-auth__input-bare::-webkit-list-button { display: none !important; -webkit-appearance: none; appearance: none; }

.pc-auth__caret {
	flex-shrink: 0;
	width: 24px; height: 24px;
	display: inline-flex; align-items: center; justify-content: center;
	color: #746a66;
	background: transparent; border: 0; padding: 0; margin-left: 8px;
	cursor: pointer; -webkit-appearance: none; appearance: none;
}
.pc-auth__caret:focus { outline: 0; }

.pc-auth__listbox {
	position: absolute;
	top: calc(100% + 6px); left: 0; right: 0;
	margin: 0; padding: 8px 6px;
	list-style: none;
	background: #fff;
	border: 1px solid rgba(28, 28, 25, 0.08);
	border-radius: 12px;
	box-shadow:
		0 1px 2px rgba(28, 28, 25, 0.04),
		0 12px 28px rgba(28, 28, 25, 0.10),
		0 24px 48px rgba(28, 28, 25, 0.06);
	max-height: 320px;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	z-index: 60;
	font: 500 15px/22px Montserrat, sans-serif;
	color: #1c1c19;
	scroll-padding-block: 12px;
}
.pc-auth__listbox[hidden] { display: none; }
.pc-auth__listbox::-webkit-scrollbar { width: 10px; }
.pc-auth__listbox::-webkit-scrollbar-track { background: transparent; }
.pc-auth__listbox::-webkit-scrollbar-thumb { background: rgba(28, 28, 25, 0.14); border: 2px solid #fff; border-radius: 999px; min-height: 28px; }
.pc-auth__listbox:hover::-webkit-scrollbar-thumb { background: rgba(28, 28, 25, 0.24); }
.pc-auth__listbox::-webkit-scrollbar-thumb:active { background: #ff6a00; }
.pc-auth__listbox { scrollbar-width: thin; scrollbar-color: rgba(28, 28, 25, 0.20) transparent; }

.pc-auth__listbox li[role="option"] {
	position: relative;
	display: flex; align-items: center; gap: 10px;
	min-height: 44px;
	padding: 10px 14px 10px 32px;
	margin: 0 2px;
	border-radius: 8px;
	font-weight: 500;
	color: #1c1c19;
	cursor: pointer;
	transition: background-color .14s ease, color .14s ease, transform .12s ease;
}
.pc-auth__listbox li[hidden] { display: none; }

.pc-auth__listbox li[role="option"][data-group] + li[role="option"][data-group] {
	background-image: linear-gradient(rgba(28, 28, 25, 0.06), rgba(28, 28, 25, 0.06));
	background-repeat: no-repeat;
	background-position: 32px top;
	background-size: calc(100% - 64px) 1px;
}
.pc-auth__listbox li[role="option"]:hover + li[role="option"][data-group],
.pc-auth__listbox li[role="option"].is-active + li[role="option"][data-group],
.pc-auth__listbox li[role="option"][aria-selected="true"] + li[role="option"][data-group] { background-image: none; }

.pc-auth__listbox li[role="option"]:hover { background-color: rgba(255, 106, 0, 0.06); }
.pc-auth__listbox li[role="option"].is-active { background-color: rgba(255, 106, 0, 0.10); }
.pc-auth__listbox li[role="option"].is-active::before {
	content: ""; position: absolute; left: 6px; top: 50%; transform: translateY(-50%);
	width: 3px; height: 18px; border-radius: 2px; background: #ff6a00;
}
.pc-auth__listbox li[role="option"][aria-selected="true"] {
	background-color: rgba(255, 106, 0, 0.12);
	font-weight: 600;
}
.pc-auth__listbox li[role="option"][aria-selected="true"]::after {
	content: ""; position: absolute; left: 12px; top: 50%;
	width: 12px; height: 7px;
	border-left: 2px solid #ff6a00; border-bottom: 2px solid #ff6a00;
	transform: translateY(-70%) rotate(-45deg);
}

.pc-auth__listbox-group {
	padding: 14px 14px 6px !important;
	margin-top: 4px;
	cursor: default !important;
	background: transparent !important;
	pointer-events: none;
	border-radius: 0;
	min-height: 0;
}
.pc-auth__listbox-group:first-child { padding-top: 6px !important; margin-top: 0; }
.pc-auth__listbox-group + li[role="option"] { margin-top: 2px; }
.pc-auth__listbox-group[hidden] { display: none; }
.pc-auth__listbox-group-label {
	display: inline-block;
	font: 700 11px/1 Montserrat, sans-serif;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #746a66;
}

/* form-level error (banner) */
.pc-auth__error {
	display: flex; align-items: center; gap: 10px;
	background: #fdecec;
	border: 1px solid #c33;
	border-radius: 8px;
	padding: 12px 16px;
	font: 600 14px/20px Montserrat, sans-serif;
	color: #a02020;
}
.pc-auth__error[hidden] { display: none; }
.pc-auth__error::before {
	content: "!";
	display: inline-flex; align-items: center; justify-content: center;
	width: 20px; height: 20px;
	background: #c33; color: #fff;
	border-radius: 50%;
	font-size: 13px; font-weight: 700;
	flex-shrink: 0;
}
.pc-auth__success {
	display: flex; align-items: center; gap: 10px;
	background: #ecfdf3;
	border: 1px solid #2e7d32;
	border-radius: 8px;
	padding: 12px 16px;
	font: 600 14px/20px Montserrat, sans-serif;
	color: #1b5e20;
}
.pc-auth__success[hidden] { display: none; }
.pc-auth__success::before {
	content: "✓";
	display: inline-flex; align-items: center; justify-content: center;
	width: 20px; height: 20px;
	background: #2e7d32; color: #fff;
	border-radius: 50%;
	font-size: 12px; font-weight: 700;
	flex-shrink: 0;
}

/* field-level error (inline) */
.pc-auth__field-error {
	margin: 0;
	padding: 6px 10px;
	background: #fdecec;
	border-left: 3px solid #c33;
	border-radius: 4px;
	font: 600 13px/18px Montserrat, sans-serif;
	color: #a02020;
	display: flex; align-items: center; gap: 8px;
}
.pc-auth__field-error[hidden] { display: none; }
.pc-auth__field-error::before {
	content: "!";
	display: inline-flex; align-items: center; justify-content: center;
	width: 16px; height: 16px;
	background: #c33; color: #fff;
	border-radius: 50%;
	font-size: 11px; font-weight: 700;
	flex-shrink: 0;
}
.pc-auth__field.is-invalid .pc-auth__input-wrap,
.pc-auth__field.is-invalid .pc-auth__input--icon,
.pc-auth__field.is-invalid .pc-auth__phone-wrap,
.pc-auth__field.is-invalid .iti__tel-input {
	border-color: #c33 !important;
	box-shadow: 0 0 0 3px rgba(204, 51, 51, 0.10) !important;
}

/* mobile - intl-tel-input wrapper */
.pc-auth__phone-wrap { width: 100%; display: block; }
.pc-auth__input--tel {
	display: block;
	width: 100%;
	padding: 12px 16px;
	background: #fff;
	border: 1px solid rgba(168, 166, 165, 0.5);
	border-radius: 8px;
	font: 400 16px/24px Montserrat, sans-serif;
	color: #1c1c19;
	outline: 0;
	transition: border-color .15s, box-shadow .15s;
}
.pc-auth__input--tel:focus { border-color: #ff6a00; box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15); }
.pc-auth__input--tel::placeholder { font-style: italic; color: #746a66; }

/* intl-tel-input - match auth styling */
.pc-auth__phone-wrap .iti { display: block; width: 100%; }
.pc-auth__phone-wrap .iti__tel-input {
	width: 100%;
	padding: 12px 16px 12px 92px !important;
	background: #fff;
	border: 1px solid rgba(168, 166, 165, 0.5);
	border-radius: 8px;
	font: 400 16px/24px Montserrat, sans-serif;
	color: #1c1c19;
}
.pc-auth__phone-wrap .iti__tel-input:focus {
	border-color: #ff6a00;
	box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
	outline: 0;
}
.pc-auth__phone-wrap .iti__country-list {
	border-radius: 12px;
	box-shadow: 0 12px 28px rgba(28, 28, 25, 0.14), 0 24px 48px rgba(28, 28, 25, 0.06);
	font: 500 14px/20px Montserrat, sans-serif;
	max-height: 280px;
	z-index: 70;
}
.pc-auth__phone-wrap .iti__selected-country { border-radius: 8px 0 0 8px; padding: 0 10px 0 12px; }
.pc-auth__phone-wrap .iti__country.iti__highlight { background: rgba(255, 106, 0, 0.10); }
.pc-auth__phone-wrap .iti__search-input { font: 500 14px/20px Montserrat, sans-serif; }

/* drop redundant old phone styles */
.pc-auth__phone, .pc-auth__phone-cc, .pc-auth__input--phone { /* legacy classes - kept for safety */ }

/* submit */
.pc-auth__submit-wrap { display: flex; justify-content: center; }
.pc-auth__submit {
	display: inline-flex; align-items: center; gap: 24px;
	padding: 8px 16px;
	background: #ff6a00;
	border: 0;
	border-radius: 8px;
	color: #fff;
	font-family: Montserrat, sans-serif;
	cursor: pointer;
	transition: background .15s, transform .05s;
}
.pc-auth__submit:hover { background: #e55a00; }
.pc-auth__submit:active { transform: scale(0.98); }
.pc-auth__submit:focus-visible { outline: 2px solid #1c1c19; outline-offset: 3px; }
.pc-auth__submit--disabled { background: #ffa666; cursor: not-allowed; }
.pc-auth__submit--disabled:hover { background: #ffa666; }
.pc-auth__submit[disabled] { cursor: not-allowed; }

.pc-auth__submit-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 34px; height: 34px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	color: #fff;
	flex-shrink: 0;
}
.pc-auth__submit-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.pc-auth__submit-label { font: 600 16px/24px Montserrat, sans-serif; }
.pc-auth__submit-meta  { font: 500 12px/20px Montserrat, sans-serif; color: rgba(255, 255, 255, 0.65); }
.pc-auth__submit-arrow { display: inline-flex; flex-shrink: 0; transition: transform 0.15s ease; }
.pc-auth__submit:hover:not(:disabled) .pc-auth__submit-arrow { transform: translateX(2px); }

/* Loading state - hide arrow, show spinner ring instead */
.pc-auth__submit.is-loading .pc-auth__submit-arrow { display: none; }
.pc-auth__submit.is-loading::after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 8px;
	border: 2px solid rgba(255,255,255,0.4);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: pc-auth-spin 0.7s linear infinite;
}
.pc-auth__submit.is-loading { pointer-events: none; opacity: 0.85; }

@keyframes pc-auth-spin { to { transform: rotate(360deg); } }

/* footer */
.pc-auth__foot { display: flex; flex-direction: column; gap: 8px; align-items: center; width: 100%; }
.pc-auth__foot--compact { gap: 4px; }
.pc-auth__foot--compact .pc-auth__terms { font: 400 12px/18px Montserrat, sans-serif; }
.pc-auth__foot--compact .pc-auth__alt { font: 400 13px/20px Montserrat, sans-serif; }

/* Forgot password - single field, half-card width to mirror signin/signup
   email column proportions. Card stays full 873px. */
.pc-auth__forgot-field {
	width: 100%;
	max-width: 380px;
	margin: 0 auto;
}
/* Forgot step - match success/error banner width to email field above. */
.pc-auth__step--forgot .pc-auth__success,
.pc-auth__step--forgot .pc-auth__error {
	width: 100%;
	max-width: 380px;
	margin: 0 auto;
	box-sizing: border-box;
}
.pc-auth__privacy {
	display: inline-flex; align-items: center; gap: 8px;
	font: 400 16px/24px Montserrat, sans-serif;
	color: #746a66;
	text-align: center;
}
.pc-auth__privacy svg { flex-shrink: 0; }
.pc-auth__divider-thin { height: 1px; background: #c6c6c6; width: 100%; }
.pc-auth__terms { margin: 0; font: 400 14px/22px Montserrat, sans-serif; color: #746a66; text-align: center; }
.pc-auth__terms a { color: #746a66; text-decoration: underline; }
.pc-auth__terms a:hover { color: #ff6a00; }
.pc-auth__alt { margin: 0; font: 400 14px/22px Montserrat, sans-serif; color: #746a66; text-align: center; }
.pc-auth__alt a { color: #ff6a00; text-decoration: none; font-weight: 600; }
.pc-auth__alt a:hover { text-decoration: underline; }

/* password - label row + suggest button */
.pc-auth__label-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pc-auth__suggest {
	display: inline-flex; align-items: center; gap: 4px;
	background: transparent; border: 0;
	color: #ff6a00;
	padding: 0;
	font: 500 12px/16px Montserrat, sans-serif;
	cursor: pointer;
}
.pc-auth__suggest:hover { color: #d4521a; text-decoration: underline; }
.pc-auth__suggest:focus-visible { outline: 2px solid #ff6a00; outline-offset: 2px; }

/* password - strength meter (hidden by default; shown only when password field has focus) */
.pc-auth__pw { display: none; flex-direction: column; gap: 8px; }
.pc-fld:focus-within > .pc-auth__pw { display: flex; }
.pc-auth__pw-bar { height: 4px; border-radius: 999px; background: #efece9; overflow: hidden; }
.pc-auth__pw-fill { display: block; height: 100%; width: 0; background: #d33; transition: width .2s ease, background-color .2s ease; }
.pc-auth__pw[data-strength="0"] .pc-auth__pw-fill { width: 0%;   background: #efece9; }
.pc-auth__pw[data-strength="1"] .pc-auth__pw-fill { width: 25%;  background: #e44; }
.pc-auth__pw[data-strength="2"] .pc-auth__pw-fill { width: 50%;  background: #f0a000; }
.pc-auth__pw[data-strength="3"] .pc-auth__pw-fill { width: 75%;  background: #4caf50; }
.pc-auth__pw[data-strength="4"] .pc-auth__pw-fill { width: 100%; background: #2e7d32; }

.pc-auth__pw-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pc-auth__pw-label { font: 500 12px/18px Montserrat, sans-serif; color: #746a66; }
.pc-auth__pw[data-strength="1"] .pc-auth__pw-label { color: #c33; }
.pc-auth__pw[data-strength="2"] .pc-auth__pw-label { color: #b87000; }
.pc-auth__pw[data-strength="3"] .pc-auth__pw-label { color: #2e7d32; }
.pc-auth__pw[data-strength="4"] .pc-auth__pw-label { color: #1b5e20; }

.pc-auth__pw-checks {
	list-style: none; margin: 0; padding: 0;
	display: none;
	flex-wrap: wrap; gap: 6px 14px;
	font: 500 12px/16px Montserrat, sans-serif;
	color: #746a66;
}
/* Reveal rules list only while password field is actually focused. */
.pc-fld:focus-within .pc-auth__pw-checks {
	display: flex;
}
.pc-auth__pw-checks li { display: inline-flex; align-items: center; gap: 6px; }
.pc-auth__pw-dot {
	display: inline-block; width: 12px; height: 12px;
	border-radius: 50%;
	border: 1.5px solid #cfc9c5;
	background: transparent;
	flex-shrink: 0;
	position: relative;
}
.pc-auth__pw-checks li.is-pass { color: #2e7d32; }
.pc-auth__pw-checks li.is-pass .pc-auth__pw-dot { border-color: #2e7d32; background: #2e7d32; }
.pc-auth__pw-checks li.is-pass .pc-auth__pw-dot::after {
	content: ""; position: absolute;
	left: 50%; top: 50%;
	width: 6px; height: 3px;
	border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff;
	transform: translate(-50%, -65%) rotate(-45deg);
}

/* signin meta - remember + forgot */
.pc-auth__signin-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pc-auth__remember { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font: 500 14px/20px Montserrat, sans-serif; color: #1c1c19; }
.pc-auth__remember input { width: 16px; height: 16px; accent-color: #ff6a00; cursor: pointer; }
.pc-auth__forgot { font: 500 14px/20px Montserrat, sans-serif; color: #ff6a00; text-decoration: none; }
.pc-auth__forgot:hover { text-decoration: underline; }

/* lock body scroll */
body.pc-no-scroll { overflow: hidden; }

/* mobile */
@media (max-width: 768px) {
	.pc-auth { padding: 12px; align-items: center; }
	.pc-auth__card { padding: 16px 16px; gap: 14px; max-width: 100%; width: 100%; margin: auto; }
	.pc-auth__title { font-size: 18px; line-height: 24px; }
	.pc-auth__sub { font-size: 13px; line-height: 20px; }
	.pc-auth__row { gap: 12px; }
	.pc-auth__field { flex: 1 1 100%; gap: 6px; }
	.pc-auth__label { font-size: 13px; line-height: 18px; }
	.pc-auth__divider { gap: 10px; }
	.pc-auth__divider-text { font-size: 12px; line-height: 18px; }
	/* Stack social buttons vertically on phones so the full label fits + bigger
	 * tap target. Earlier nowrap row truncated "Sign up with Facebook" to "Faceb..." */
	.pc-auth__socials { gap: 10px; flex-direction: column; flex-wrap: nowrap; }
	.pc-auth__social { width: 100%; flex: 0 0 auto; justify-content: center; padding: 10px 14px; font-size: 14px; gap: 10px; white-space: nowrap; }
	.pc-auth__social svg { flex-shrink: 0; width: 20px; height: 20px; }
	.pc-auth__social span { min-width: 0; }
	.pc-auth__input-wrap { padding: 6px 12px; }
	/* Keep 16px on mobile to prevent iOS / Android auto-zoom on focus. */
	.pc-auth__input { font-size: 16px; line-height: 22px; padding: 6px 0; }
	.pc-auth__submit { gap: 10px; padding: 8px 14px; }
	.pc-auth__submit-icon { width: 32px; height: 32px; }
	.pc-auth__submit-label { font-size: 14px; line-height: 20px; }
	.pc-auth__submit-meta { font-size: 11px; line-height: 16px; }
	.pc-auth__privacy { font-size: 12px; line-height: 18px; }
	.pc-auth__pill { font-size: 12px; padding: 4px 12px; }
}
