﻿/*
 * alnokhba-auth-design.css
 * Auth pages — matches LoginPage.tsx / RegisterPage.tsx design
 * Pure black background, gold labels, transparent inputs
 */

/* ═══════════════════════════════════════════════
   PAGE BODY OVERRIDES
   ═══════════════════════════════════════════════ */

body.alnokhba-page-auth .alnokhba-main,
body.alnokhba-page-auth .alnokhba-site {
	background: #000 !important;
	min-height: 100vh;
}

body.alnokhba-page-auth .an-page-body--account {
	padding: 0;
	max-width: none;
}

body.alnokhba-page-auth {
	padding-top: 0 !important;
	background: #000 !important;
}

body.alnokhba-page-auth .an-floating-contact {
	display: none !important;
}

/* ═══════════════════════════════════════════════
   OUTER SHELL — pure black, centered
   ═══════════════════════════════════════════════ */

.an-auth-design {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 1.5rem) 2.5rem;
	background: #000 !important;
	direction: rtl;
	font-family: 'Tajawal', 'Inter', 'Cairo', sans-serif;
}

/* Hide background image completely — design is plain black */
.an-auth-design__bg,
.an-auth-design__corner {
	display: none;
}

/* ═══════════════════════════════════════════════
   INNER WRAPPER
   ═══════════════════════════════════════════════ */

.an-auth-design__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 28rem;
}

/* ═══════════════════════════════════════════════
   LOGO / BRAND MARK
   ═══════════════════════════════════════════════ */

.an-auth-design__logo-wrap {
	text-align: center;
	margin-bottom: 2.5rem;
}

.an-auth-design__logo {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	text-decoration: none;
}

.an-auth-design__crown {
	color: #C9A97A;
	transition: color .3s;
}

.an-auth-design__logo-label {
	font-family: 'Inter', sans-serif;
	font-size: 0.45rem;
	letter-spacing: 0.5em;
	text-transform: uppercase;
	color: rgba(255,255,255,.3);
	margin: 0.5rem 0 0;
	line-height: 1;
}

.an-auth-design__logo-name {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.4rem, 3vw, 1.8rem);
	font-weight: 400;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1;
	margin-top: 0.2rem;
}

/* Ornament divider under brand */
.an-auth-design__logo-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.75rem;
}

.an-auth-design__logo-divider span {
	display: block;
	height: 1px;
	width: 2.5rem;
	background: rgba(201,169,122,.35);
}

/* ═══════════════════════════════════════════════
   SIGNIN / SIGNUP MODE TABS (outer card tabs)
   ═══════════════════════════════════════════════ */

.an-auth-design__card {
	background: transparent;
	border: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.an-auth-design__modes {
	display: flex;
	border: 1px solid rgba(255,255,255,.12);
	margin-bottom: 2rem;
}

.an-auth-design__mode {
	flex: 1;
	padding: 0.75rem 1rem;
	text-align: center;
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255,255,255,.3);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	transition: color .2s, border-color .2s, background .2s;
}

.an-auth-design__mode:hover {
	color: rgba(255,255,255,.65);
}

.an-auth-design__mode.is-active {
	color: #C9A97A;
	border-bottom-color: #C9A97A;
	background: rgba(201,169,122,.05);
}

/* Card body */
.an-auth-design__body {
	padding: 0;
}

/* ═══════════════════════════════════════════════
   INNER WRAPPERS RESET (form-login / page-auth)
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-page {
	background: transparent !important;
	padding: 0;
	min-height: 0;
	flex: none;
	display: block;
	align-items: unset;
}

.an-auth-design .an-auth-page__wrap {
	max-width: none;
}

.an-auth-design .an-auth-brand,
.an-auth-design .an-auth-back {
	display: none;
}

.an-auth-design .an-auth-card {
	background: transparent;
	border: none;
	padding: 0;
	box-shadow: none;
	border-radius: 0;
}

/* ═══════════════════════════════════════════════
   TITLE + LEAD
   ═══════════════════════════════════════════════ */

.an-auth-design__title,
.an-auth-design .an-auth-card__title {
	font-family: 'Tajawal', 'Cairo', sans-serif;
	font-size: clamp(1.35rem, 3.5vw, 1.65rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.5rem;
	line-height: 1.35;
	text-align: center;
	letter-spacing: 0;
	text-transform: none;
}

.an-auth-design__lead,
.an-auth-design .an-auth-card__lead {
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.825rem;
	color: rgba(255,255,255,.35);
	line-height: 1.7;
	margin: 0 0 2rem;
	text-align: center;
}

/* Section kicker above title */
.an-auth-design .an-auth-kicker {
	font-family: 'Inter', sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.35em;
	color: #C9A97A;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════
   LOGIN METHOD TABS (email / OTP)
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-tabs {
	display: flex;
	border: 1px solid rgba(255,255,255,.12);
	margin-bottom: 1.75rem;
}

.an-auth-design .an-auth-tab {
	flex: 1;
	padding: 0.75rem 0.5rem;
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	color: rgba(255,255,255,.3);
	cursor: pointer;
	transition: color .2s, background .2s, border-color .2s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
}

.an-auth-design .an-auth-tab + .an-auth-tab {
	border-inline-end: 1px solid rgba(255,255,255,.1);
}

.an-auth-design .an-auth-tab:hover {
	color: rgba(255,255,255,.65);
}

.an-auth-design .an-auth-tab.is-active {
	color: #C9A97A;
	border-bottom-color: #C9A97A;
	background: rgba(201,169,122,.06);
}

/* ═══════════════════════════════════════════════
   LABELS — gold tinted
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-label {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.62rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(201,169,122,.7);
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.an-auth-design .an-auth-label__icon {
	display: flex;
	align-items: center;
	opacity: .7;
}

.an-auth-design .an-auth-label__icon svg {
	width: 12px;
	height: 12px;
}

/* ═══════════════════════════════════════════════
   INPUT WRAPPER — always full width
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-input-wrap {
	width: 100%;
	margin-bottom: 1.25rem;
	position: relative;
}

/* ═══════════════════════════════════════════════
   INPUTS — transparent with subtle white border
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-input-wrap input,
.an-auth-design .an-auth-input-wrap .input-text,
.an-auth-design .an-auth-phone-prefix input,
.an-auth-design .woocommerce-Input,
.an-auth-design form input[type="text"],
.an-auth-design form input[type="email"],
.an-auth-design form input[type="password"],
.an-auth-design form input[type="tel"] {
	width: 100% !important;
	background: transparent !important;
	border: 1px solid rgba(255,255,255,.18) !important;
	color: #F5F5F0 !important;
	padding: 0.8rem 1rem !important;
	font-size: 0.875rem !important;
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif !important;
	border-radius: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	transition: border-color .2s !important;
	box-sizing: border-box !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.an-auth-design .an-auth-input-wrap input::placeholder,
.an-auth-design .an-auth-phone-prefix input::placeholder,
.an-auth-design form input::placeholder {
	color: rgba(255,255,255,.2) !important;
	opacity: 1 !important;
}

.an-auth-design .an-auth-input-wrap input:focus,
.an-auth-design .an-auth-input-wrap .input-text:focus,
.an-auth-design .an-auth-phone-prefix input:focus,
.an-auth-design .woocommerce-Input:focus,
.an-auth-design form input:focus {
	border-color: #C9A97A !important;
	box-shadow: none !important;
	outline: none !important;
}

/* ─── Password wrap: flex row for input + eye button ─── */
.an-auth-design .an-auth-input-wrap--password {
	display: flex !important;
	align-items: stretch !important;
	width: 100% !important;
	border: 1px solid rgba(255,255,255,.18) !important;
	transition: border-color .2s !important;
	margin-bottom: 1.25rem;
}

.an-auth-design .an-auth-input-wrap--password:focus-within {
	border-color: #C9A97A !important;
}

/* Remove individual border from inputs inside password wrap */
.an-auth-design .an-auth-input-wrap--password input[type="password"],
.an-auth-design .an-auth-input-wrap--password input[type="text"] {
	flex: 1 !important;
	width: auto !important;
	min-width: 0 !important;
	border: none !important;
	box-shadow: none !important;
	background: transparent !important;
	padding-inline-end: 0.5rem !important;
}

.an-auth-design .an-auth-input-wrap--password input:focus {
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
}

/* Eye toggle button */
.an-auth-design .an-auth-toggle-pass {
	flex-shrink: 0;
	background: none !important;
	border: none !important;
	color: rgba(255,255,255,.25) !important;
	padding: 0 0.75rem !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	transition: color .2s !important;
}

.an-auth-design .an-auth-toggle-pass:hover {
	color: #C9A97A !important;
}

/* ═══════════════════════════════════════════════
   PHONE PREFIX
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-phone-prefix {
	display: flex;
	flex-direction: row;
	direction: ltr;
	width: 100%;
	border: 1px solid rgba(255,255,255,.18);
	margin-bottom: 1.25rem;
	transition: border-color .2s;
}

.an-auth-design .an-auth-phone-prefix:focus-within {
	border-color: #C9A97A;
}

.an-auth-design .an-auth-phone-prefix__code {
	background: rgba(201,169,122,.08) !important;
	border: none !important;
	border-inline-end: 1px solid rgba(255,255,255,.12) !important;
	border-inline-start: none !important;
	padding: 0.8rem 0.875rem !important;
	color: #C9A97A !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 0.75rem !important;
	white-space: nowrap !important;
	flex-shrink: 0;
	order: 0;
}

.an-auth-design .an-auth-phone-prefix input {
	flex: 1 !important;
	width: auto !important;
	min-width: 0 !important;
	border: none !important;
	margin-bottom: 0 !important;
	order: 1;
	text-align: left !important;
}

/* ═══════════════════════════════════════════════
   REMEMBER ROW + FORGOT LINK
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0.5rem 0 1.25rem;
	gap: 0.5rem;
}

.an-auth-design .an-auth-remember {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-family: 'Tajawal', 'Inter', 'Cairo', sans-serif;
	font-size: 0.75rem;
	color: rgba(201,169,122,.65);
	cursor: pointer;
}

.an-auth-design .an-auth-remember input[type="checkbox"] {
	width: 14px;
	height: 14px;
	accent-color: #C9A97A;
}

/* ═══════════════════════════════════════════════
   CHECKBOX (terms)
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-check {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.78rem;
	color: rgba(255,255,255,.3);
	line-height: 1.6;
	margin-top: 0.75rem;
	cursor: pointer;
}

.an-auth-design .an-auth-check input[type="checkbox"] {
	width: 14px;
	height: 14px;
	margin-top: 2px;
	flex-shrink: 0;
	accent-color: #C9A97A;
}

.an-auth-design .an-auth-check a {
	color: #C9A97A;
	text-decoration: none;
	border-bottom: 1px solid rgba(201,169,122,.3);
}

/* ═══════════════════════════════════════════════
   SUBMIT BUTTON — gold border, gold text
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-submit,
.an-auth-design .woocommerce-button.button,
.an-auth-design .woocommerce-Button.button {
	display: flex !important;
	width: 100% !important;
	align-items: center !important;
	justify-content: center !important;
	background: transparent !important;
	border: 1px solid #C9A97A !important;
	color: #C9A97A !important;
	padding: 0.9rem 1.5rem !important;
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif !important;
	font-size: 0.72rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	border-radius: 0 !important;
	cursor: pointer !important;
	transition: background .3s, color .3s !important;
	box-shadow: none !important;
	margin-top: 0.75rem !important;
	min-height: auto !important;
	box-sizing: border-box !important;
}

.an-auth-design .an-auth-submit:hover,
.an-auth-design .woocommerce-button.button:hover,
.an-auth-design .woocommerce-Button.button:hover {
	background: #C9A97A !important;
	color: #000 !important;
}

/* ═══════════════════════════════════════════════
   LINKS
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-link {
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.75rem;
	color: rgba(201,169,122,.6);
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
	transition: color .2s;
	padding: 0;
}

.an-auth-design .an-auth-link:hover {
	color: #C9A97A;
}

/* Footer (have account / don't have) */
.an-auth-design .an-auth-footer {
	text-align: center;
	margin-top: 1.5rem;
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.78rem;
	color: rgba(255,255,255,.3);
}

.an-auth-design .an-auth-footer a {
	color: #F5F5F0;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color .2s;
}

.an-auth-design .an-auth-footer a:hover {
	color: rgba(245,245,240,.7);
}

/* ═══════════════════════════════════════════════
   BACK LINK
   ═══════════════════════════════════════════════ */

.an-auth-design__back-wrap {
	text-align: center;
	margin-top: 1.5rem;
}

.an-auth-design__back {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,.2);
	text-decoration: none;
	transition: color .2s;
}

.an-auth-design__back:hover {
	color: rgba(201,169,122,.7);
}

/* ═══════════════════════════════════════════════
   ERROR / HINT TEXT
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-field-error {
	font-family: 'Inter', 'Cairo', sans-serif;
	font-size: 0.7rem;
	color: #fca5a5;
	margin: 0.25rem 0 0;
}

.an-auth-design .an-auth-hint {
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.72rem;
	color: rgba(255,255,255,.25);
	line-height: 1.65;
	margin: 0.375rem 0 0;
}

.an-auth-design .an-auth-note {
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.78rem;
	color: rgba(255,255,255,.25);
	line-height: 1.65;
	margin: 0.5rem 0;
}

/* ═══════════════════════════════════════════════
   WOOCOMMERCE NOTICES
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-notices .woocommerce-message,
.an-auth-design .an-auth-notices .woocommerce-error,
.an-auth-design .an-auth-notices .woocommerce-info {
	background: rgba(255,255,255,.04) !important;
	border-top: none !important;
	border-inline-start: 2px solid #C9A97A !important;
	color: rgba(255,255,255,.7) !important;
	padding: 0.75rem 1rem !important;
	font-size: 0.8rem !important;
	border-radius: 0 !important;
	margin-bottom: 1rem !important;
	list-style: none !important;
}

.an-auth-design .an-auth-notices .woocommerce-error {
	border-inline-start-color: #ef4444 !important;
}

/* ═══════════════════════════════════════════════
   OTP INPUTS
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-otp-digits {
	display: flex;
	gap: 0.625rem;
	margin: 0.75rem 0;
}

.an-auth-design .an-auth-otp-digit,
.an-auth-design .an-auth-otp-digits input {
	width: 3rem !important;
	height: 3.25rem !important;
	text-align: center !important;
	font-family: 'Playfair Display', serif !important;
	font-size: 1.25rem !important;
	background: transparent !important;
	border: 1px solid rgba(255,255,255,.18) !important;
	color: #fff !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	transition: border-color .2s !important;
}

.an-auth-design .an-auth-otp-digit:focus,
.an-auth-design .an-auth-otp-digits input:focus {
	border-color: #C9A97A !important;
	outline: none !important;
}

.an-auth-design .an-auth-otp-send {
	display: inline-block;
	background: none;
	border: 1px solid rgba(255,255,255,.2);
	color: rgba(255,255,255,.45);
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	padding: 0.5rem 1rem;
	cursor: pointer;
	transition: background .2s, color .2s, border-color .2s;
	margin-top: 0.5rem;
}

.an-auth-design .an-auth-otp-send:hover {
	border-color: rgba(201,169,122,.5);
	color: #C9A97A;
}

.an-auth-design .an-auth-otp-back {
	background: none;
	border: none;
	color: rgba(255,255,255,.3);
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.72rem;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color .2s;
}

.an-auth-design .an-auth-otp-back:hover {
	color: #C9A97A;
}

.an-auth-design .an-auth-otp-hint {
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.65rem;
	color: rgba(255,255,255,.2);
	margin: 0.375rem 0 0;
}

/* Gateway notice */
.an-auth-design .an-auth-otp-gateway-notice {
	font-family: 'Inter', 'Tajawal', 'Cairo', sans-serif;
	font-size: 0.75rem;
	color: rgba(255,200,100,.7);
	background: rgba(255,200,100,.05);
	border-inline-start: 2px solid rgba(255,200,100,.35);
	padding: 0.625rem 0.875rem;
	margin-bottom: 1rem;
	line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   PASS STRENGTH
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-pass-strength {
	display: flex;
	gap: 0.25rem;
	align-items: center;
	margin-top: 0.5rem;
}

.an-auth-design .an-auth-pass-strength span {
	flex: 1;
	height: 2px;
	background: rgba(255,255,255,.08);
	transition: background .3s;
}

.an-auth-design .an-auth-pass-strength span.is-on {
	background: #C9A97A;
}

.an-auth-design .an-auth-pass-strength small {
	font-family: 'Inter', sans-serif;
	font-size: 0.6rem;
	color: rgba(255,255,255,.25);
	white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   FORGOT PASSWORD SUCCESS
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-forgot-success__icon {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1.25rem;
	border: 1px solid rgba(201,169,122,.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #C9A97A;
}

.an-auth-design .an-auth-forgot-success__title {
	font-family: 'Playfair Display', serif;
	color: #fff;
	font-weight: 700;
	font-size: 1.25rem;
	text-align: center;
	margin: 0 0 0.5rem;
}

/* ═══════════════════════════════════════════════
   OR DIVIDER
   ═══════════════════════════════════════════════ */

.an-auth-design .an-auth-or {
	position: relative;
	text-align: center;
	margin: 1rem 0;
}

.an-auth-design .an-auth-or::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: rgba(255,255,255,.08);
}

.an-auth-design .an-auth-or span {
	position: relative;
	background: #000;
	padding: 0 12px;
	font-family: 'Inter', 'Tajawal', sans-serif;
	font-size: 0.72rem;
	color: rgba(255,255,255,.2);
}

/* Secondary ghost button (OTP login) */
.an-auth-design .an-auth-submit--ghost {
	border-color: rgba(255,255,255,.2) !important;
	color: rgba(255,255,255,.45) !important;
}

.an-auth-design .an-auth-submit--ghost:hover {
	background: rgba(255,255,255,.06) !important;
	color: rgba(255,255,255,.8) !important;
	border-color: rgba(255,255,255,.4) !important;
}

/* ═══════════════════════════════════════════════
   REGISTER MODE — RegisterPage.tsx
   ═══════════════════════════════════════════════ */

.an-auth-design[data-an-auth-mode="signup"] .an-auth-design__kicker--register {
	font-size: 0.72rem;
	letter-spacing: 0.4em;
	color: rgba(255,255,255,.4);
	margin-bottom: 2rem;
}

.an-auth-design[data-an-auth-mode="signup"] .an-auth-label {
	color: rgba(255,255,255,.4);
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.an-auth-design[data-an-auth-mode="signup"] .an-auth-label__icon {
	opacity: 0.45;
}

.an-auth-design[data-an-auth-mode="signup"] .an-auth-input-wrap input,
.an-auth-design[data-an-auth-mode="signup"] .an-auth-phone-prefix input,
.an-auth-design[data-an-auth-mode="signup"] form input[type="text"],
.an-auth-design[data-an-auth-mode="signup"] form input[type="email"],
.an-auth-design[data-an-auth-mode="signup"] form input[type="password"],
.an-auth-design[data-an-auth-mode="signup"] form input[type="tel"] {
	border-color: rgba(255,255,255,.2) !important;
}

.an-auth-design[data-an-auth-mode="signup"] .an-auth-input-wrap input:focus,
.an-auth-design[data-an-auth-mode="signup"] .an-auth-phone-prefix:focus-within,
.an-auth-design[data-an-auth-mode="signup"] form input:focus {
	border-color: #fff !important;
}

.an-auth-design[data-an-auth-mode="signup"] .an-auth-phone-prefix {
	border-color: rgba(255,255,255,.2);
}

.an-auth-design[data-an-auth-mode="signup"] .an-auth-submit,
.an-auth-design[data-an-auth-mode="signup"] .woocommerce-button.button {
	border-color: #fff !important;
	color: #fff !important;
	letter-spacing: 0.2em !important;
	padding: 1rem 1.5rem !important;
}

.an-auth-design[data-an-auth-mode="signup"] .an-auth-submit:hover,
.an-auth-design[data-an-auth-mode="signup"] .woocommerce-button.button:hover {
	background: #fff !important;
	color: #000 !important;
}

/* ═══════════════════════════════════════════════
   FORGOT PASSWORD — LoginPage.tsx forgot view
   ═══════════════════════════════════════════════ */

.an-auth-design[data-an-auth-mode="forgot"] .an-auth-design__modes {
	display: none;
}

.an-auth-forgot-head {
	text-align: center;
	margin-bottom: 2rem;
}

.an-auth-forgot-head__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1rem;
	border: 1px solid rgba(201,169,122,.3);
	color: #C9A97A;
}

.an-auth-design__kicker--forgot {
	margin-bottom: 0.75rem;
}

.an-auth-forgot-head__lead {
	font-family: 'Tajawal', 'Inter', 'Cairo', sans-serif;
	font-size: 0.85rem;
	color: rgba(255,255,255,.4);
	line-height: 1.7;
	margin: 0;
	text-align: center;
	max-width: 22rem;
	margin-inline: auto;
}

.an-auth-forgot-success {
	text-align: center;
}

.an-auth-forgot-success__text {
	font-family: 'Tajawal', 'Inter', 'Cairo', sans-serif;
	font-size: 0.9rem;
	color: rgba(255,255,255,.5);
	line-height: 1.8;
	margin: 0 0 1.5rem;
}

.an-auth-forgot-success .an-auth-submit {
	text-decoration: none;
	margin-bottom: 0.75rem;
}

.an-auth-forgot-try-again {
	display: block;
	width: 100%;
	margin-top: 0.5rem;
}

.an-auth-design .an-auth-row .an-auth-link {
	color: rgba(201,169,122,.6);
}

.an-auth-design .an-auth-footer a {
	font-weight: 600;
}

.an-auth-design .an-auth-input-wrap input[dir="ltr"],
.an-auth-design form input[dir="ltr"] {
	direction: ltr;
	text-align: right;
}

.an-auth-design .an-auth-tab + .an-auth-tab {
	border-inline-end: none;
	border-inline-start: 1px solid rgba(255,255,255,.1);
}

.an-auth-design .an-auth-design__mode + .an-auth-design__mode {
	border-inline-start: 1px solid rgba(255,255,255,.08);
}
