/* ==========================================================================
   auth.css — Login / Register page styles
   ========================================================================== */

/* Hide default page title on auth */
.mt-auth-fullpage .entry-title {
	display: none !important;
}

/* Full page layout */
.mt-auth-page {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 70vh;
	max-width: 1280px;
	margin: 32px auto 48px;
	border-radius: var(--mt-radius-lg);
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}


/* ---- Left Column ---- */
.mt-auth-left {
	background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 40%, #f9d5e8 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 48px;
	position: relative;
	overflow: hidden;
}

.mt-auth-left::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(233,30,140,0.08) 0%, transparent 70%);
	border-radius: 50%;
}

.mt-auth-left__inner {
	max-width: 520px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.mt-auth-left__logo img {
	height: 44px;
	width: auto;
	margin-bottom: 32px;
}

.mt-auth-left__title {
	font-size: 32px;
	font-weight: 800;
	color: var(--mt-dark);
	line-height: 1.3;
	margin-bottom: 12px;
}

.mt-auth-left__highlight {
	color: var(--mt-primary);
}

.mt-auth-left__text {
	font-size: 15px;
	color: var(--mt-text-muted);
	line-height: 1.6;
	margin-bottom: 32px;
}

.mt-auth-left__illustration {
	text-align: center;
	margin-bottom: 32px;
}

.mt-auth-left__illustration img {
	max-width: 380px;
	width: 100%;
	height: auto;
}

/* Trust badges */
.mt-auth-left__badges {
	display: flex;
	gap: 24px;
	margin-bottom: 40px;
}

.mt-auth-badge {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	flex: 1;
}

.mt-auth-badge__icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	border-radius: var(--mt-radius-full);
	background: rgba(255,255,255,0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mt-primary);
	box-shadow: 0 2px 8px rgba(233,30,140,0.1);
}

.mt-auth-badge__text {
	font-size: 12px;
	line-height: 1.4;
}

.mt-auth-badge__text strong {
	display: block;
	font-weight: 700;
	color: var(--mt-dark);
	font-size: 13px;
	margin-bottom: 2px;
}

.mt-auth-badge__text span {
	color: var(--mt-text-muted);
}

/* Footer */
.mt-auth-left__footer {
	border-top: 1px solid rgba(233,30,140,0.12);
	padding-top: 20px;
}

.mt-auth-left__footer p {
	font-size: 12px;
	color: var(--mt-text-muted);
	margin-bottom: 8px;
}

.mt-auth-left__links {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.mt-auth-left__links a {
	font-size: 12px;
	color: var(--mt-text-muted);
	transition: color var(--mt-transition);
}

.mt-auth-left__links a:hover {
	color: var(--mt-primary);
}

/* ---- Right Column ---- */
.mt-auth-right {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 48px;
	background: var(--mt-bg);
}

.mt-auth-card {
	width: 100%;
	max-width: 460px;
}

/* Tabs */
.mt-auth-tabs {
	display: flex;
	gap: 0;
	border-bottom: 2px solid var(--mt-border-light);
	margin-bottom: 32px;
}

.mt-auth-tabs__tab {
	flex: 1;
	padding: 14px 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--mt-text-muted);
	border: none;
	background: none;
	cursor: pointer;
	position: relative;
	transition: color var(--mt-transition);
}

.mt-auth-tabs__tab::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: transparent;
	transition: background var(--mt-transition);
}

.mt-auth-tabs__tab--active {
	color: var(--mt-primary);
}

.mt-auth-tabs__tab--active::after {
	background: var(--mt-primary);
}

.mt-auth-tabs__tab:hover {
	color: var(--mt-primary);
}

/* Form panels */
.mt-auth-form {
	display: none;
}

.mt-auth-form--active {
	display: block;
}

/* Fields */
.mt-auth-field {
	margin-bottom: 20px;
}

.mt-auth-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--mt-dark);
	margin-bottom: 8px;
}

.mt-auth-field__input-wrap {
	display: flex;
	align-items: center;
	border: 1.5px solid var(--mt-border);
	border-radius: var(--mt-radius);
	padding: 0 14px;
	transition: border-color var(--mt-transition), box-shadow var(--mt-transition);
	background: #fff;
}

.mt-auth-field__input-wrap:focus-within {
	border-color: var(--mt-primary);
	box-shadow: 0 0 0 3px rgba(233,30,140,0.08);
}

.mt-auth-field__icon {
	color: var(--mt-text-muted);
	display: flex;
	align-items: center;
	margin-right: 10px;
	flex-shrink: 0;
}

.mt-auth-field__input-wrap input {
	flex: 1;
	border: none;
	padding: 14px 0;
	font-size: 14px;
	color: var(--mt-dark);
	background: transparent;
	outline: none;
	width: 100%;
}

.mt-auth-field__input-wrap input::placeholder {
	color: var(--mt-text-muted);
	font-weight: 400;
}

.mt-auth-field__toggle {
	background: none;
	border: none;
	color: var(--mt-text-muted);
	cursor: pointer;
	padding: 4px;
	display: flex;
	align-items: center;
	transition: color var(--mt-transition);
}

.mt-auth-field__toggle:hover {
	color: var(--mt-dark);
}

/* Remember me row */
.mt-auth-remember {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.mt-auth-remember__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--mt-text);
	cursor: pointer;
}

.mt-auth-remember__input {
	display: none;
}

.mt-auth-remember__check {
	width: 20px;
	height: 20px;
	border: 2px solid var(--mt-border);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--mt-transition);
	color: transparent;
}

.mt-auth-remember__input:checked + .mt-auth-remember__check {
	background: var(--mt-primary);
	border-color: var(--mt-primary);
	color: #fff;
}

.mt-auth-remember__forgot {
	font-size: 13px;
	color: var(--mt-primary);
	font-weight: 500;
	transition: color var(--mt-transition);
}

.mt-auth-remember__forgot:hover {
	color: var(--mt-primary-dark);
}

/* Submit button */
.mt-auth-submit {
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, var(--mt-primary) 0%, #c2185b 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	border: none;
	border-radius: var(--mt-radius);
	cursor: pointer;
	transition: all var(--mt-transition);
	box-shadow: 0 4px 16px rgba(233,30,140,0.3);
}

.mt-auth-submit:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(233,30,140,0.4);
}

/* Divider */
.mt-auth-divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 24px 0;
}

.mt-auth-divider::before,
.mt-auth-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--mt-border-light);
}

.mt-auth-divider span {
	font-size: 13px;
	color: var(--mt-text-muted);
	font-weight: 500;
}

/* Social login */
.mt-auth-social {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 28px;
}

.mt-auth-social__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	border: 1.5px solid var(--mt-border);
	border-radius: var(--mt-radius);
	font-size: 13px;
	font-weight: 600;
	color: var(--mt-dark);
	background: #fff;
	cursor: pointer;
	transition: all var(--mt-transition);
}

.mt-auth-social__btn:hover {
	border-color: var(--mt-text-muted);
	background: var(--mt-bg-light);
}

/* Seller CTA */
.mt-auth-seller-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 24px;
	border-top: 1px solid var(--mt-border-light);
	margin-top: 24px;
}

.mt-auth-seller-cta span {
	font-size: 14px;
	font-weight: 600;
	color: var(--mt-dark);
}

.mt-auth-seller-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border: 1.5px solid var(--mt-primary);
	border-radius: var(--mt-radius);
	font-size: 13px;
	font-weight: 600;
	color: var(--mt-primary);
	transition: all var(--mt-transition);
}

.mt-auth-seller-cta__btn:hover {
	background: var(--mt-primary);
	color: #fff;
}

/* Forgot password panel */
.mt-auth-forgot-header {
	margin-bottom: 24px;
}

.mt-auth-forgot__back {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: none;
	border: none;
	color: var(--mt-primary);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
	transition: color var(--mt-transition);
}

.mt-auth-forgot__back:hover {
	color: var(--mt-primary-dark);
}

.mt-auth-forgot-icon {
	text-align: center;
	margin-bottom: 16px;
}

.mt-auth-forgot__title {
	font-size: 22px;
	font-weight: 700;
	color: var(--mt-dark);
	text-align: center;
	margin-bottom: 8px;
}

.mt-auth-forgot__text {
	font-size: 14px;
	color: var(--mt-text-muted);
	text-align: center;
	margin-bottom: 28px;
	line-height: 1.5;
}

/* WooCommerce error notices on login */
.mt-auth-page .woocommerce-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
	padding: 12px 16px;
	border-radius: var(--mt-radius);
	margin-bottom: 20px;
	font-size: 13px;
	list-style: none;
}

.mt-auth-disabled {
	text-align: center;
	padding: 40px;
	color: var(--mt-text-muted);
	font-size: 15px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.mt-auth-page {
		grid-template-columns: 1fr;
	}

	.mt-auth-left {
		display: none;
	}

	.mt-auth-right {
		padding: 40px 24px;
		min-height: 100vh;
		background: linear-gradient(135deg, #fdf2f8 0%, #fff 50%);
	}

	.mt-auth-card {
		max-width: 420px;
	}
}

@media (max-width: 480px) {
	.mt-auth-right {
		padding: 24px 16px;
	}

	.mt-auth-social {
		grid-template-columns: 1fr;
	}

	.mt-auth-seller-cta {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
}

/* Override WooCommerce default form styles */
.mt-auth-page .woocommerce-form-login,
.mt-auth-page .woocommerce-form-register {
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

/* Hide default WooCommerce heading if any */
.mt-auth-page h2:not(.mt-auth-left__title) {
	display: none;
}

/* Dokan vendor registration form compatibility */
.mt-auth-page .dokan-form-group {
	margin-bottom: 20px;
}

.mt-auth-page .dokan-form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--mt-dark);
	margin-bottom: 8px;
}

.mt-auth-page .dokan-form-group input[type="text"],
.mt-auth-page .dokan-form-group input[type="email"],
.mt-auth-page .dokan-form-group input[type="password"],
.mt-auth-page .dokan-form-group input[type="url"],
.mt-auth-page .dokan-form-group input[type="tel"],
.mt-auth-page .dokan-form-group select,
.mt-auth-page .dokan-form-group textarea {
	width: 100%;
	padding: 14px;
	border: 1.5px solid var(--mt-border);
	border-radius: var(--mt-radius);
	font-size: 14px;
	color: var(--mt-dark);
	transition: border-color var(--mt-transition), box-shadow var(--mt-transition);
}

.mt-auth-page .dokan-form-group input:focus,
.mt-auth-page .dokan-form-group select:focus,
.mt-auth-page .dokan-form-group textarea:focus {
	border-color: var(--mt-primary);
	box-shadow: 0 0 0 3px rgba(233,30,140,0.08);
	outline: none;
}

/* KVKK Consent Checkbox */
.mt-kvkk-consent-row {
	margin-top: 16px;
	padding: 16px;
	background: rgba(233,30,140,0.03);
	border: 1px solid rgba(233,30,140,0.12);
	border-radius: var(--mt-radius);
}

.mt-kvkk-label {
	display: flex !important;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 13px;
	line-height: 1.5;
	color: var(--mt-text);
}

.mt-kvkk-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-width: 18px;
	margin-top: 2px;
	accent-color: var(--mt-primary);
	cursor: pointer;
}

.mt-kvkk-label a {
	color: var(--mt-primary);
	font-weight: 600;
	text-decoration: underline;
}

.mt-kvkk-label a:hover {
	color: var(--mt-primary-dark);
}

.mt-kvkk-label .required {
	color: var(--mt-primary);
	font-weight: 700;
}

/* --- Customer Registration Consent Group --- */
.mt-consent-group {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--mt-border, #eee);
}

.mt-consent-row {
	margin-bottom: 12px !important;
}

.mt-consent-label {
	display: flex !important;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 13px;
	line-height: 1.55;
	color: var(--mt-text, #444);
}

.mt-consent-label input[type="checkbox"] {
	width: 16px;
	height: 16px;
	min-width: 16px;
	margin-top: 2px;
	accent-color: var(--mt-primary, #e91e8c);
	cursor: pointer;
}

.mt-consent-popup-link {
	color: var(--mt-primary, #e91e8c) !important;
	text-decoration: underline !important;
	font-weight: 600;
	cursor: pointer;
}

.mt-consent-popup-link:hover {
	color: var(--mt-primary-dark, #c41878) !important;
}

.mt-consent-label .required {
	color: var(--mt-primary, #e91e8c);
	font-weight: 700;
}

.mt-consent-footer {
	margin-top: 16px;
	font-size: 12px;
	color: var(--mt-muted, #888);
	line-height: 1.6;
	text-align: center;
}

.mt-consent-footer a {
	color: var(--mt-dark, #222);
	text-decoration: underline;
	font-weight: 600;
}

.mt-consent-footer a:hover {
	color: var(--mt-primary, #e91e8c);
}

/* --- Consent Modal Popup --- */
.mt-consent-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.mt-consent-modal {
	background: #fff;
	border-radius: 12px;
	max-width: 520px;
	width: 100%;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	animation: mtModalIn 0.25s ease-out;
}

@keyframes mtModalIn {
	from {
		opacity: 0;
		transform: scale(0.95) translateY(10px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.mt-consent-modal__close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	font-size: 24px;
	color: #999;
	cursor: pointer;
	z-index: 2;
	line-height: 1;
	padding: 4px;
}

.mt-consent-modal__close:hover {
	color: #333;
}

.mt-consent-modal__icon {
	text-align: center;
	padding: 24px 24px 0;
}

.mt-consent-modal__content {
	padding: 16px 28px;
	overflow-y: auto;
	flex: 1;
	font-size: 13px;
	line-height: 1.65;
	color: #444;
}

.mt-consent-modal__content h2 {
	font-size: 15px;
	font-weight: 700;
	color: var(--mt-primary, #e91e8c);
	text-align: center;
	margin: 0 0 16px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.mt-consent-modal__content h3,
.mt-consent-modal__content h4 {
	font-size: 13px;
	font-weight: 700;
	color: #222;
	margin: 16px 0 8px;
}

.mt-consent-modal__content p {
	margin: 0 0 12px;
}

.mt-consent-modal__content ul {
	padding-left: 20px;
	margin: 0 0 12px;
}

.mt-consent-modal__content li {
	margin-bottom: 4px;
}

.mt-consent-modal__btn {
	display: block;
	width: calc(100% - 48px);
	margin: 8px 24px 24px;
	padding: 14px;
	background: var(--mt-primary, #e91e8c);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	text-align: center;
	transition: background 0.2s;
}

.mt-consent-modal__btn:hover {
	background: var(--mt-primary-dark, #c41878);
}

@media (max-width: 576px) {
	.mt-consent-modal {
		max-width: 100%;
		max-height: 90vh;
		border-radius: 8px;
	}

	.mt-consent-modal__content {
		padding: 12px 16px;
		font-size: 12px;
	}

	.mt-consent-modal__btn {
		width: calc(100% - 32px);
		margin: 8px 16px 16px;
	}
}

/* ---- Dokan Vendor/Customer Radio Cards ---- */
.mt-auth-page .vendor-customer-registration {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 12px;
	margin: 20px 0 24px;
	padding: 0;
	font-size: 0; /* collapse whitespace text nodes */
}

.mt-auth-page .vendor-customer-registration br {
	display: none !important;
}

.mt-auth-page .vendor-customer-registration label.radio:first-of-type {
	grid-column: 1;
	grid-row: 1;
}

.mt-auth-page .vendor-customer-registration label.radio:last-of-type {
	grid-column: 2;
	grid-row: 1;
}

.mt-auth-page .vendor-customer-registration label.radio {
	display: flex !important;
	font-size: 14px; /* restore from parent font-size:0 */
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 20px 16px;
	border: 2px solid var(--mt-border-light, #eee);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
	background: #fff;
	text-align: center;
	position: relative;
	margin: 0;
}

.mt-auth-page .vendor-customer-registration label.radio:hover {
	border-color: var(--mt-primary);
	background: rgba(233,30,140,0.02);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(233,30,140,0.08);
}

.mt-auth-page .vendor-customer-registration label.radio input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.mt-auth-page .vendor-customer-registration label.radio input[type="radio"]:checked + .mt-role-card__check,
.mt-auth-page .vendor-customer-registration label.radio:has(input:checked) {
	border-color: var(--mt-primary);
	background: linear-gradient(135deg, rgba(233,30,140,0.04) 0%, rgba(233,30,140,0.01) 100%);
	box-shadow: 0 0 0 3px rgba(233,30,140,0.1), 0 4px 12px rgba(233,30,140,0.08);
}

/* Icon circle before text */
.mt-auth-page .vendor-customer-registration label.radio::before {
	content: '';
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--mt-bg-light, #f8f9fa);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 0.2s ease;
}

/* Customer icon */
.mt-auth-page .vendor-customer-registration label.radio:first-of-type::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='1.5'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

/* Vendor icon */
.mt-auth-page .vendor-customer-registration label.radio:nth-of-type(2)::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='1.5'%3E%3Cpath d='m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7'/%3E%3Cpath d='M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8'/%3E%3Cpath d='M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4'/%3E%3Cpath d='M2 7h20'/%3E%3Cpath d='M22 7v3a2 2 0 0 1-2 2 2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12a2 2 0 0 1-2-2V7'/%3E%3C/svg%3E");
}

/* Active state icons — pink */
.mt-auth-page .vendor-customer-registration label.radio:has(input:checked)::before {
	background-color: rgba(233,30,140,0.08);
}

.mt-auth-page .vendor-customer-registration label.radio:first-of-type:has(input:checked)::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23E91E8C' stroke-width='1.5'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.mt-auth-page .vendor-customer-registration label.radio:nth-of-type(2):has(input:checked)::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23E91E8C' stroke-width='1.5'%3E%3Cpath d='m2 7 4.41-4.41A2 2 0 0 1 7.83 2h8.34a2 2 0 0 1 1.42.59L22 7'/%3E%3Cpath d='M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8'/%3E%3Cpath d='M15 22v-4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4'/%3E%3Cpath d='M2 7h20'/%3E%3Cpath d='M22 7v3a2 2 0 0 1-2 2 2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 16 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 12 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 8 12a2.7 2.7 0 0 1-1.59-.63.7.7 0 0 0-.82 0A2.7 2.7 0 0 1 4 12a2 2 0 0 1-2-2V7'/%3E%3C/svg%3E");
}

/* Role label text styling */
.mt-auth-page .vendor-customer-registration label.radio {
	font-size: 14px;
	font-weight: 700;
	color: var(--mt-dark);
}

.mt-auth-page .vendor-customer-registration label.radio:has(input:checked) {
	color: var(--mt-primary);
}

/* Check indicator */
.mt-auth-page .vendor-customer-registration label.radio::after {
	content: '';
	position: absolute;
	top: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid var(--mt-border-light, #ddd);
	transition: all 0.2s ease;
}

.mt-auth-page .vendor-customer-registration label.radio:has(input:checked)::after {
	border-color: var(--mt-primary);
	background: var(--mt-primary);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: 12px;
	background-repeat: no-repeat;
	background-position: center;
}

/* ---- Dokan Seller Form Fields ---- */
.mt-auth-page .show_if_seller {
	margin-top: 16px;
}

.mt-auth-page .show_if_seller .form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--mt-dark);
	margin-bottom: 8px;
}

.mt-auth-page .show_if_seller .form-group input[type="text"],
.mt-auth-page .show_if_seller .form-group select,
.mt-auth-page .show_if_seller .form-group textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--mt-border);
	border-radius: var(--mt-radius);
	font-size: 14px;
	color: var(--mt-dark);
	background: #fff;
	transition: border-color var(--mt-transition), box-shadow var(--mt-transition);
}

.mt-auth-page .show_if_seller .form-group input:focus,
.mt-auth-page .show_if_seller .form-group select:focus,
.mt-auth-page .show_if_seller .form-group textarea:focus {
	border-color: var(--mt-primary);
	box-shadow: 0 0 0 3px rgba(233,30,140,0.08);
	outline: none;
}

.mt-auth-page .show_if_seller .split-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.mt-auth-page .show_if_seller small {
	font-size: 11px;
	color: var(--mt-text-muted);
	margin-top: 4px;
	display: block;
}

/* ---- iyzico Fields ---- */
.mt-iyzico-fields {
	margin-top: 20px;
	padding: 20px;
	background: rgba(233,30,140,0.02);
	border: 1px solid rgba(233,30,140,0.12);
	border-radius: var(--mt-radius-lg, 12px);
}

.mt-iyzico-fields__header {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--mt-primary);
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(233,30,140,0.1);
}

.mt-iyzico-fields .form-group {
	margin-bottom: 14px !important;
}

.mt-iyzico-fields .form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--mt-dark);
	margin-bottom: 6px;
}

.mt-iyzico-fields .form-group .required {
	color: var(--mt-primary);
}

.mt-iyzico-fields .form-group input[type="text"],
.mt-iyzico-fields .form-group select,
.mt-iyzico-fields .form-group textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--mt-border);
	border-radius: var(--mt-radius);
	font-size: 14px;
	color: var(--mt-dark);
	background: #fff;
	transition: border-color var(--mt-transition), box-shadow var(--mt-transition);
}

.mt-iyzico-fields .form-group input:focus,
.mt-iyzico-fields .form-group select:focus,
.mt-iyzico-fields .form-group textarea:focus {
	border-color: var(--mt-primary);
	box-shadow: 0 0 0 3px rgba(233,30,140,0.08);
	outline: none;
}

.mt-iyzico-fields .form-group textarea {
	resize: vertical;
	min-height: 60px;
}

@media (max-width: 576px) {
	.mt-auth-page .show_if_seller .split-row {
		grid-template-columns: 1fr;
	}

	.mt-auth-page .vendor-customer-registration {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}

	.mt-auth-page .vendor-customer-registration label.radio {
		padding: 14px 10px;
		font-size: 12px;
	}

	.mt-auth-page .vendor-customer-registration label.radio::before {
		width: 40px;
		height: 40px;
		background-size: 20px;
	}

	.mt-auth-page .vendor-customer-registration label.radio::after {
		width: 16px;
		height: 16px;
		top: 8px;
		right: 8px;
	}

	.mt-iyzico-fields {
		padding: 16px;
	}
}
