/* WP Registration Suite — Front-end modern form styling (Tutor LMS inspired) */
.wprs-form-wrapper {
	--wprs-primary: #5b2eff;
	--wprs-primary-dark: #4521d6;
	--wprs-bg: #f7f7fb;
	--wprs-border: #e6e6ef;
	--wprs-text: #1d1d2b;
	--wprs-muted: #6f6f87;
	--wprs-danger: #e6483f;
	--wprs-success: #1ba672;
	/* Theme-matched button look. Defaults reproduce the plugin's own design;
	   when "Automatically match this form's font to your theme" is on, JS
	   overrides these on the wrapper element with values read from the
	   active theme's own buttons/colors. */
	--wprs-theme-btn-bg: linear-gradient(135deg, var(--wprs-primary), #8a5cff);
	--wprs-theme-btn-fg: #fff;
	--wprs-theme-btn-radius: 12px;
	--wprs-theme-btn-shadow: rgba(91, 46, 255, 0.25);
	--wprs-theme-btn-shadow-hover: rgba(91, 46, 255, 0.34);
	display: flex;
	justify-content: center;
	padding: 32px 16px;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* "Automatically match this form's font & button style to your theme"
   (per-form builder option, or the site-wide overrides in Settings).
   Font: every text element simply inherits whatever font-family is
   already cascading down from the theme at the point the shortcode is
   placed, so it always matches even if the theme's font changes later.
   Button: frontend.js reads the theme's own button/brand color at
   runtime and sets the --wprs-theme-btn-* custom properties above on
   this wrapper; the button rules below just consume those variables. */
.wprs-auto-theme-font,
.wprs-auto-theme-font .wprs-form-title,
.wprs-auto-theme-font .wprs-field-group label,
.wprs-auto-theme-font .wprs-input,
.wprs-auto-theme-font select,
.wprs-auto-theme-font textarea,
.wprs-auto-theme-font .wprs-submit-btn,
.wprs-auto-theme-font .wprs-form-footer,
.wprs-auto-theme-font .wprs-radio-label,
.wprs-auto-theme-font .wprs-checkbox-label {
	font-family: inherit;
}

.wprs-form-card {
	width: 100%;
	max-width: 620px;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 8px 30px rgba(20, 20, 43, 0.08);
	border: 1px solid var(--wprs-border);
	padding: 36px 32px;
}

.wprs-form-header { margin-bottom: 22px; text-align: center; }
.wprs-form-title {
	font-size: 26px;
	font-weight: 700;
	color: var(--wprs-text);
	margin: 0 0 6px;
}

/* "You're already logged in" state — shown instead of the Login/
   Registration form when a signed-in visitor lands on that page. */
.wprs-already-loggedin {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 44px 32px;
}
.wprs-loggedin-avatar {
	width: 76px; height: 76px; border-radius: 50%;
	margin-bottom: 18px;
	box-shadow: 0 0 0 4px var(--wprs-bg, #f7f7fb), 0 6px 18px rgba(20,20,43,0.12);
	border: 1px solid var(--wprs-border);
}
.wprs-already-loggedin .wprs-form-title { margin-bottom: 6px; }
.wprs-already-loggedin-sub {
	color: var(--wprs-muted);
	font-size: 14.5px;
	margin: 0 0 28px;
}
.wprs-already-loggedin-actions {
	display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 280px;
}
.wprs-already-loggedin-home {
	width: 100%; box-sizing: border-box; text-align: center; justify-content: center;
	text-decoration: none; margin-top: 0;
}
.wprs-already-loggedin-logout {
	font-size: 13.5px; font-weight: 600; color: var(--wprs-muted);
	text-decoration: none; padding: 8px 14px; border-radius: 999px;
	transition: color .15s ease, background-color .15s ease;
}
.wprs-already-loggedin-logout:hover { color: var(--wprs-danger); background: rgba(230,72,63,0.08); }

/* ── My Profile page ([wprs_profile]) ── */
.wprs-profile-card { max-width: 560px; }
.wprs-profile-head {
	display: flex; align-items: center; gap: 20px;
	padding-bottom: 22px; margin-bottom: 20px;
	border-bottom: 1px solid var(--wprs-border);
}
.wprs-profile-avatar-wrap { position: relative; flex-shrink: 0; }
.wprs-profile-avatar,
.wprs-profile-avatar-wrap img {
	width: 104px; height: 104px; border-radius: 50%; object-fit: cover;
	border: 3px solid var(--wprs-bg, #f7f7fb);
	box-shadow: 0 4px 14px rgba(20,20,43,0.12);
	display: block;
}
.wprs-profile-avatar-edit {
	position: absolute; bottom: 4px; right: 4px;
	width: 30px; height: 30px; border-radius: 50%;
	border: 2px solid #fff;
	background: var(--wprs-primary); color: #fff;
	font-size: 13px; line-height: 1; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 2px 8px rgba(20,20,43,0.25);
	transition: transform .12s ease, background .12s ease;
}
.wprs-profile-avatar-edit:hover { transform: scale(1.08); background: var(--wprs-primary-dark, #4520cc); }
.wprs-profile-identity .wprs-form-title { margin: 0 0 4px; font-size: 22px; text-align: left; }
.wprs-profile-email { margin: 0 0 4px; font-size: 14px; color: var(--wprs-muted); }
.wprs-profile-since { margin: 0; font-size: 12.5px; color: var(--wprs-muted); opacity: .8; }
.wprs-profile-section-title {
	font-size: 15px; font-weight: 700; color: var(--wprs-text);
	margin: 0 0 14px; letter-spacing: .2px;
}
.wprs-profile-nodata { font-size: 14px; color: var(--wprs-muted); }
.wprs-profile-form .wprs-field-group { margin-bottom: 14px; }

/* Completion meter */
.wprs-profile-progress {
	background: var(--wprs-bg, #f7f7fb);
	border: 1px solid var(--wprs-border);
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 18px;
}
.wprs-profile-progress.is-complete {
	background: #f0fbf6;
	border-color: #bde8d2;
}
.wprs-profile-progress-top {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 8px;
}
.wprs-profile-progress-label { font-size: 13.5px; font-weight: 700; color: var(--wprs-text); }
.wprs-profile-progress.is-complete .wprs-profile-progress-label { color: #14855a; }
.wprs-profile-progress-percent { font-size: 13px; font-weight: 700; color: var(--wprs-primary); }
.wprs-profile-progress.is-complete .wprs-profile-progress-percent { color: #14855a; }
.wprs-profile-progress-bar {
	height: 8px; border-radius: 999px; overflow: hidden;
	background: var(--wprs-border);
}
.wprs-profile-progress-bar span {
	display: block; height: 100%;
	background: linear-gradient(90deg, var(--wprs-primary), #8a5cff);
	border-radius: 999px;
	transition: width .35s ease;
}
.wprs-profile-progress.is-complete .wprs-profile-progress-bar span { background: #1ba672; }
.wprs-profile-progress-hint { margin: 8px 0 0; font-size: 12.5px; color: var(--wprs-muted); }
.wprs-profile-photo-hint {
	margin: 8px 0 0; font-size: 12.5px; color: var(--wprs-primary);
	cursor: pointer;
}
.wprs-profile-photo-hint:hover { text-decoration: underline; }
.wprs-profile-photo-btn {
	margin-top: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	border: 1.5px solid var(--wprs-primary);
	background: transparent; color: var(--wprs-primary);
	font-size: 12.5px; font-weight: 700; cursor: pointer;
	transition: background .12s ease, color .12s ease;
}
.wprs-profile-photo-btn:hover { background: var(--wprs-primary); color: #fff; }
.wprs-profile-optional-tag {
	font-size: 11px; font-weight: 600; color: var(--wprs-muted);
	background: var(--wprs-bg, #f7f7fb);
	border: 1px solid var(--wprs-border);
	border-radius: 999px; padding: 2px 8px; margin-left: 6px;
	vertical-align: middle; letter-spacing: .3px; text-transform: uppercase;
}
.wprs-profile-choices { display: flex; flex-wrap: wrap; gap: 8px; }
.wprs-profile-fieldnote { margin: 6px 0 0; font-size: 12px; color: var(--wprs-muted, #6f6f87); line-height: 1.45; }
.wprs-profile-currentpass { padding-top: 4px; }
.wprs-profile-login-prompt { text-align: center; display: flex; flex-direction: column; align-items: center; padding: 44px 32px; }
.wprs-profile-login-prompt .wprs-already-loggedin-home { max-width: 260px; }
@media (max-width: 480px) {
	.wprs-profile-head { flex-direction: column; text-align: center; }
	.wprs-profile-identity .wprs-form-title { text-align: center; }
}

.wprs-fields-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.wprs-field-group { display: flex; flex-direction: column; gap: 6px; }
.wprs-width-full { flex: 1 1 100%; }
.wprs-width-half { flex: 1 1 calc(50% - 9px); }
@media (max-width: 520px) { .wprs-width-half { flex: 1 1 100%; } }

.wprs-field-group label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--wprs-text);
}
.wprs-required { color: var(--wprs-danger); }

.wprs-input,
.wprs-form select.wprs-input {
	width: 100%;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1.5px solid var(--wprs-border);
	background: var(--wprs-bg);
	font-size: 14.5px;
	color: var(--wprs-text);
	transition: border-color .15s ease, box-shadow .15s ease;
	box-sizing: border-box;
}
.wprs-input:focus {
	outline: none;
	border-color: var(--wprs-primary);
	box-shadow: 0 0 0 3px rgba(91,46,255,0.12);
	background: #fff;
}
textarea.wprs-input { resize: vertical; min-height: 90px; }

/* Password field + eye icon toggle */
.wprs-password-wrap { position: relative; display: flex; align-items: center; }
.wprs-password-wrap .wprs-password-input { padding-right: 42px; }
.wprs-password-toggle {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--wprs-muted, #6f6f87);
	cursor: pointer;
	border-radius: 6px;
}
.wprs-password-toggle:hover { color: var(--wprs-primary, #5b2eff); background: rgba(91,46,255,0.08); }
.wprs-password-toggle:focus-visible { outline: 2px solid var(--wprs-primary, #5b2eff); outline-offset: 1px; }
.wprs-password-toggle .wprs-eye-icon { display: block; }

/* Live password-match indicator */
.wprs-password-match {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 600;
	min-height: 16px;
}
.wprs-password-match:empty { display: none; }
.wprs-password-match svg { flex: none; }
.wprs-password-match.wprs-match-ok  { color: var(--wprs-success, #1ba672); }
.wprs-password-match.wprs-match-bad { color: var(--wprs-danger, #e6483f); }

/* Newsletter popup + form */
body.wprs-modal-open { overflow: hidden; }
.wprs-nl-modal-overlay {
	position: fixed; inset: 0; z-index: 100000;
	background: rgba(20, 20, 43, 0.55);
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
}
.wprs-nl-modal-box {
	background: #fff; border-radius: 16px; width: 100%; max-width: 460px;
	max-height: 88vh; overflow-y: auto; padding: 30px 28px; position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.wprs-nl-modal-close {
	position: absolute; top: 14px; right: 14px;
	border: none; background: transparent; cursor: pointer;
	font-size: 24px; line-height: 1; color: var(--wprs-muted, #6f6f87); padding: 4px;
}
.wprs-nl-modal-close:hover { color: var(--wprs-text, #1d1d2b); }
/* Category multi-select — rendered as tappable pill "chips" instead of a
   raw checkbox list. The native checkbox stays in the DOM (visually
   hidden) so keyboard access, form semantics and the existing JS keep
   working untouched; the pill just mirrors its :checked state. */
.wprs-nl-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.wprs-nl-cat-option { position: relative; cursor: pointer; }
.wprs-nl-cat-option input {
	position: absolute; opacity: 0; width: 1px; height: 1px;
	margin: 0; pointer-events: none;
}
.wprs-nl-cat-text {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 7px 14px;
	border-radius: 999px;
	border: 1.5px solid var(--wprs-border);
	background: var(--wprs-bg);
	font-size: 13px; font-weight: 600;
	color: var(--wprs-muted, #6f6f87);
	line-height: 1.2;
	user-select: none;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.wprs-nl-cat-text::before {
	content: "+";
	font-weight: 700; font-size: 13px; line-height: 1;
}
.wprs-nl-cat-option:hover .wprs-nl-cat-text { border-color: var(--wprs-primary); color: var(--wprs-primary); }
.wprs-nl-cat-option input:focus-visible + .wprs-nl-cat-text {
	outline: none; box-shadow: 0 0 0 3px rgba(91,46,255,0.18);
}
.wprs-nl-cat-option input:checked + .wprs-nl-cat-text {
	background: var(--wprs-primary);
	border-color: var(--wprs-primary);
	color: #fff;
}
.wprs-nl-cat-option input:checked + .wprs-nl-cat-text::before { content: "✓"; }

/* ── Category picker popup (categories_display="popup") ── */
.wprs-nl-cats-popup-trigger {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1.5px solid var(--wprs-border);
	background: var(--wprs-bg);
	font-size: 14.5px;
	font-family: inherit;
	text-align: left;
	color: var(--wprs-muted, #6f6f87);
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.wprs-nl-cats-popup-trigger:hover { border-color: var(--wprs-primary); }
.wprs-nl-cats-popup.open .wprs-nl-cats-popup-trigger {
	border-color: var(--wprs-primary);
	box-shadow: 0 0 0 3px rgba(91,46,255,0.12);
}
.wprs-nl-cats-popup-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wprs-nl-cats-popup-label.has-value { color: var(--wprs-text, #1d1d2b); font-weight: 600; }
.wprs-nl-cats-popup-overlay {
	position: fixed; inset: 0;
	background: rgba(15, 10, 35, 0.55);
	backdrop-filter: blur(2px);
	z-index: 99999;
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
}
.wprs-nl-cats-popup-overlay[hidden] { display: none; }
.wprs-nl-cats-popup-box {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(10, 5, 30, 0.35);
	width: 100%; max-width: 400px;
	max-height: 85vh; overflow-y: auto;
	padding: 22px 22px 20px;
	text-align: left;
}
.wprs-nl-cats-popup-head {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 4px;
}
.wprs-nl-cats-popup-head h3 {
	margin: 0; font-size: 17px; font-weight: 700; color: var(--wprs-text, #1d1d2b);
}
.wprs-nl-cats-popup-close {
	border: none; background: transparent; cursor: pointer;
	font-size: 24px; line-height: 1; color: var(--wprs-muted, #6f6f87); padding: 4px;
}
.wprs-nl-cats-popup-close:hover { color: var(--wprs-text, #1d1d2b); }
.wprs-nl-cats-popup-hint {
	margin: 0 0 14px; font-size: 13px; color: var(--wprs-muted, #6f6f87);
}
.wprs-nl-cats-popup-box .wprs-nl-categories { margin: 0 0 18px; }
.wprs-nl-cats-popup-done { margin-top: 0; padding: 12px 16px; font-size: 14.5px; }

/* Custom category dropdown — deliberately NOT a native <select>, since the
   browser's own popup can't be restyled to match a dark/branded design and
   ends up looking like a broken, unstyled system control. This is a fully
   custom trigger + list built with the same CSS variables as the rest of
   the form, so it always matches whatever theme/placement it's used in. */
.wprs-nl-dropdown { position: relative; }
.wprs-nl-dropdown-trigger {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1.5px solid var(--wprs-border);
	background: var(--wprs-bg);
	font-size: 14.5px;
	font-family: inherit;
	text-align: left;
	color: var(--wprs-muted, #6f6f87);
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.wprs-nl-dropdown-trigger:hover { border-color: var(--wprs-primary); }
.wprs-nl-dropdown.open .wprs-nl-dropdown-trigger,
.wprs-nl-dropdown-trigger[aria-expanded="true"] {
	border-color: var(--wprs-primary);
	box-shadow: 0 0 0 3px rgba(91,46,255,0.12);
}
.wprs-nl-dropdown-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wprs-nl-dropdown-label.has-value { color: var(--wprs-text, #1d1d2b); font-weight: 600; }
.wprs-nl-dropdown-caret {
	font-style: normal; font-size: 11px; color: var(--wprs-muted, #6f6f87); flex-shrink: 0;
	transition: transform .15s ease;
}
.wprs-nl-dropdown.open .wprs-nl-dropdown-caret { transform: rotate(180deg); }
.wprs-nl-dropdown-list {
	position: absolute; top: calc(100% + 6px); left: 0; right: 0;
	background: #fff;
	border: 1px solid var(--wprs-border);
	border-radius: 10px;
	box-shadow: 0 12px 28px rgba(20,20,43,0.14);
	max-height: 240px; overflow-y: auto;
	z-index: 30;
	margin: 0; padding: 6px; list-style: none;
}
.wprs-nl-dropdown-option {
	padding: 10px 12px;
	border-radius: 7px;
	font-size: 14px;
	color: var(--wprs-text, #1d1d2b);
	cursor: pointer;
	transition: background .12s ease, color .12s ease;
}
.wprs-nl-dropdown-option:hover,
.wprs-nl-dropdown-option[aria-selected="true"] {
	background: var(--wprs-primary);
	color: #fff;
}

.wprs-nl-description { font-size: 13.5px; color: var(--wprs-muted, #6f6f87); margin: -6px 0 4px; line-height: 1.5; }
.wprs-submit-btn:disabled { opacity: .55; cursor: not-allowed; box-shadow: none; }
.wprs-nl-success { text-align: center; padding: 20px 6px; color: var(--wprs-success, #1ba672); }
.wprs-nl-success.wprs-nl-already { color: var(--wprs-primary, #5b2eff); }
.wprs-nl-success svg { margin-bottom: 10px; }
.wprs-nl-success p { margin: 0; font-size: 15px; color: var(--wprs-text, #1d1d2b); }
.wprs-nl-inline .wprs-form-card { max-width: 460px; }

.wprs-heading-block h3 {
	margin: 6px 0 0;
	font-size: 17px;
	font-weight: 700;
	border-bottom: 1px solid var(--wprs-border);
	padding-bottom: 8px;
}

/* Radio / Checkbox */
.wprs-radio-group { display: flex; gap: 16px; flex-wrap: wrap; }
.wprs-radio-label, .wprs-checkbox-label {
	display: flex; align-items: center; gap: 6px;
	font-size: 14px; font-weight: 500; color: var(--wprs-text);
	cursor: pointer;
}

/* Phone / WhatsApp */
.wprs-phone-wrap { position: relative; display: flex; align-items: center; }
.wprs-phone-icon {
	position: absolute; left: 12px; font-size: 16px; pointer-events: none;
}
.wprs-phone-wrap .wprs-whatsapp { padding-left: 38px; }

/* File upload */
.wprs-upload-wrap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.wprs-upload-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 11px 16px; border-radius: 10px;
	background: var(--wprs-bg); border: 1.5px dashed var(--wprs-primary);
	color: var(--wprs-primary); font-weight: 600; font-size: 13.5px;
	cursor: pointer; transition: background .15s ease;
}
.wprs-upload-btn:hover { background: #efeaff; }
.wprs-upload-icon { font-size: 15px; }
.wprs-file-input { display: none; }
.wprs-file-name { font-size: 12.5px; color: var(--wprs-muted); }

/* Submit button */
.wprs-submit-btn {
	position: relative;
	overflow: hidden;
	margin-top: 26px;
	width: 100%;
	padding: 15px 20px;
	border: none;
	border-radius: var(--wprs-theme-btn-radius, 12px);
	background: var(--wprs-theme-btn-bg, linear-gradient(135deg, var(--wprs-primary), #8a5cff));
	color: var(--wprs-theme-btn-fg, #fff);
	font-size: 15.5px;
	font-weight: 700;
	letter-spacing: .2px;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center; gap: 10px;
	transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
	box-shadow: 0 8px 20px var(--wprs-theme-btn-shadow, rgba(91,46,255,0.25));
}
/* Subtle top sheen for a more polished, "pressable" look. */
.wprs-submit-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(255,255,255,0.16), rgba(255,255,255,0) 55%);
	pointer-events: none;
}
.wprs-submit-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 26px var(--wprs-theme-btn-shadow-hover, rgba(91,46,255,0.32));
	filter: brightness(1.03);
}
.wprs-submit-btn:active { transform: translateY(0); filter: brightness(0.97); }
.wprs-submit-btn:focus-visible {
	outline: 2px solid var(--wprs-theme-btn-fg, #fff);
	outline-offset: 2px;
}
.wprs-submit-btn:disabled { opacity: .7; cursor: not-allowed; transform:none; filter:none; }

.wprs-spinner {
	width: 16px; height: 16px; border-radius: 50%;
	border: 2.5px solid rgba(255,255,255,0.45);
	border-top-color: #fff;
	animation: wprs-spin 0.7s linear infinite;
}
@keyframes wprs-spin { to { transform: rotate(360deg); } }

.wprs-form-footer {
	text-align: center; margin-top: 18px; font-size: 13.5px; color: var(--wprs-muted);
}
.wprs-form-footer a { color: var(--wprs-primary); font-weight: 600; text-decoration: none; }

.wprs-alert {
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 13.5px;
	font-weight: 600;
}
.wprs-alert.wprs-alert-success { background: #e8faf2; color: var(--wprs-success); border: 1px solid #b9eed5; }
.wprs-alert.wprs-alert-error   { background: #fdecea; color: var(--wprs-danger); border: 1px solid #f7c6c2; }

.wprs-error { color: var(--wprs-danger); text-align: center; }

/* Bot protection (reCAPTCHA / Turnstile) widget wrap */
.wprs-captcha-wrap { margin-top: 4px; }
.wprs-captcha-wrap .g-recaptcha,
.wprs-captcha-wrap .cf-turnstile { display: inline-block; }
.wprs-captcha-placeholder {
	display: flex; align-items: center; gap: 8px;
	padding: 12px 14px; border-radius: 10px; border: 1.5px dashed var(--wprs-border, #e6e6ef);
	background: var(--wprs-bg, #f7f7fb); color: var(--wprs-muted, #6f6f87); font-size: 13px;
}

/* Type accents */
.wprs-type-login .wprs-form-card { max-width: 460px; }
