/* ==========================================================
   Moeen Auth Premium CSS
   Pages:
   - /login/
   - /signup/
   - /my-account/lost-password/
   - /my-account/
   ========================================================== */

/* ==========================================================
   01. Base Variables
========================================================== */

.moeen-membership-page {
    --auth-bg: rgba(7, 18, 27, 0.94);
    --auth-bg-2: rgba(10, 25, 36, 0.88);
    --auth-border: rgba(38, 214, 203, 0.22);
    --auth-border-strong: rgba(38, 214, 203, 0.44);
    --auth-teal: var(--teal, #26d6cb);
    --auth-teal-2: #4ee8df;
    --auth-gold: #f2c96b;
    --auth-red: #ff7373;
    --auth-text: var(--text, #ffffff);
    --auth-muted: var(--muted, rgba(236, 252, 252, 0.72));
    --auth-soft: rgba(236, 252, 252, 0.54);
    --auth-faint: rgba(236, 252, 252, 0.36);
    --auth-radius-xl: 28px;
    --auth-radius-lg: 20px;
    --auth-radius-md: 16px;
    --auth-shadow: 0 26px 72px rgba(0, 0, 0, 0.28);
    --auth-transition: 180ms ease;

    direction: rtl;
}

.moeen-membership-page,
.moeen-membership-page * {
    box-sizing: border-box;
}

.moeen-membership-page .page-hero__inner {
    text-align: center;
}

.moeen-auth-wrap {
    width: min(980px, 100%);
    margin-inline: auto;
}

.moeen-membership-page > .page-hero {
    min-height: 220px !important;
    padding-top: 86px !important;
    padding-bottom: 24px !important;
}

.moeen-membership-page > .section {
    padding-top: 22px !important;
    padding-bottom: 78px !important;
}

/* ==========================================================
   02. Auth Card
========================================================== */

.moeen-auth-card {
    position: relative;
    overflow: hidden;
    width: min(560px, 100%);
    margin-inline: auto;
    padding: clamp(26px, 3vw, 36px) !important;

    border: 1px solid rgba(38, 214, 203, 0.24) !important;
    border-radius: var(--auth-radius-xl);

    background:
        radial-gradient(circle at 100% 0%, rgba(38, 214, 203, 0.13), transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(242, 201, 107, 0.07), transparent 34%),
        linear-gradient(180deg, rgba(10, 25, 36, 0.94), rgba(4, 10, 15, 0.98)) !important;

    box-shadow:
        var(--auth-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.moeen-auth-card::before {
    content: "";
    position: absolute;
    inset-inline-start: -70px;
    inset-block-start: -70px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(38, 214, 203, 0.08);
    filter: blur(10px);
    pointer-events: none;
}

.moeen-auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.moeen-auth-logo img {
    max-width: 132px;
    height: auto;
}

.moeen-auth-card .kicker {
    display: inline-flex;
    margin-bottom: 12px;
}

.moeen-auth-card h2 {
    margin: 6px 0 8px !important;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 38px) !important;
    line-height: 1.3;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.moeen-auth-card p {
    margin: 0 0 24px !important;
    color: rgba(236, 252, 252, 0.70) !important;
    font-size: 14px !important;
    font-weight: 700;
    line-height: 1.9;
}

.moeen-auth-card .moeen-auth-intro {
    max-width: 430px;
    margin: 0 0 20px !important;
    color: rgba(236, 252, 252, 0.66) !important;
    font-size: 13.5px !important;
    line-height: 1.8 !important;
}

/* ==========================================================
   03. Forms
========================================================== */

.moeen-auth-card form,
.moeen-login-form,
.moeen-signup-form {
    display: grid;
    gap: 15px;
    
    
}

.moeen-auth-card label {
    display: grid;
    gap: 8px;
    margin: 0 !important;
    color: rgba(236, 252, 252, 0.88);
    font-size: 13.5px;
    font-weight: 900;
    line-height: 1.4;
}

.moeen-auth-card input.input,
.moeen-auth-card input[type="text"],
.moeen-auth-card input[type="email"],
.moeen-auth-card input[type="password"],
.moeen-auth-card input[type="tel"],
.moeen-membership-page .woocommerce input.input-text,
.moeen-membership-page .woocommerce input[type="text"],
.moeen-membership-page .woocommerce input[type="email"],
.moeen-membership-page .woocommerce input[type="password"],
.moeen-membership-page .woocommerce input[type="tel"],
.moeen-membership-page .lost_reset_password input.input-text {
    width: 100% !important;
    min-height: 52px !important;
    padding: 12px 15px !important;

    border: 1px solid rgba(38, 214, 203, 0.32) !important;
    border-radius: 17px !important;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035)) !important;

    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;

    font-family: inherit !important;
    font-size: 14.5px !important;
    font-weight: 850 !important;

    outline: none !important;
    box-shadow: none !important;

    transition:
        border-color var(--auth-transition),
        background var(--auth-transition),
        box-shadow var(--auth-transition);
}

.moeen-auth-card input::placeholder,
.moeen-membership-page .woocommerce input::placeholder {
    color: rgba(236, 252, 252, 0.42);
}

.moeen-auth-card input:focus,
.moeen-membership-page .woocommerce input:focus,
.moeen-membership-page .lost_reset_password input.input-text:focus {
    border-color: rgba(38, 214, 203, 0.62) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.042)) !important;
    box-shadow: 0 0 0 4px rgba(38, 214, 203, 0.10) !important;
}

.moeen-auth-card input:-webkit-autofill,
.moeen-auth-card input:-webkit-autofill:hover,
.moeen-auth-card input:-webkit-autofill:focus,
.moeen-membership-page .woocommerce input:-webkit-autofill,
.moeen-membership-page .woocommerce input:-webkit-autofill:hover,
.moeen-membership-page .woocommerce input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    box-shadow: 0 0 0 1000px rgba(9, 23, 33, 0.98) inset !important;
    border-color: rgba(38, 214, 203, 0.42) !important;
    transition: background-color 9999s ease-in-out 0s;
}

/* ==========================================================
   04. Signup Layout
========================================================== */

.moeen-signup-form {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px !important;
}

.moeen-signup-form button {
    margin-top: 5px;
}

.moeen-field-help {
    display: block;
    margin: -7px 2px 0;
    color: rgba(236, 252, 252, 0.50);
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.7;
}

.moeen-signup-form input[type="tel"] {
    direction: rtl;
    text-align: right;
}

.moeen-auth-card .moeen-legal-consent {
    position: relative;
    display: flex !important;
    align-items: flex-start;
    gap: 11px;
    padding: 12px 13px;
    border: 1px solid rgba(38, 214, 203, .18);
    border-radius: 14px;
    background: rgba(5, 27, 35, .52);
    color: rgba(230, 244, 245, .72);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.8;
    cursor: pointer;
    transition: border-color var(--auth-transition), background var(--auth-transition), box-shadow var(--auth-transition);
}

.moeen-auth-card .moeen-legal-consent:hover {
    border-color: rgba(38, 214, 203, .34);
    background: rgba(7, 34, 43, .68);
}

.moeen-legal-consent input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

.moeen-legal-consent__box {
    position: relative;
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    place-items: center;
    margin-top: 1px;
    border: 1px solid rgba(53, 240, 227, .46);
    border-radius: 6px;
    background: rgba(2, 16, 22, .76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
    transition: border-color var(--auth-transition), background var(--auth-transition), box-shadow var(--auth-transition), transform var(--auth-transition);
}

.moeen-legal-consent__box::after {
    content: "";
    width: 5px;
    height: 9px;
    border: 0;
    border-right: 2px solid #061014;
    border-bottom: 2px solid #061014;
    direction: ltr;
    opacity: 0;
    transform: translateY(-1px) rotate(45deg) scale(.6);
    transform-origin: center;
    transition: opacity var(--auth-transition), transform var(--auth-transition);
}

.moeen-legal-consent input[type="checkbox"]:checked + .moeen-legal-consent__box {
    border-color: rgba(217, 175, 85, .72);
    background: linear-gradient(135deg, #f0c96e, #35f0e3);
    box-shadow: 0 0 0 4px rgba(217, 175, 85, .07), 0 7px 18px rgba(0, 0, 0, .15);
    transform: scale(1.03);
}

.moeen-legal-consent input[type="checkbox"]:checked + .moeen-legal-consent__box::after {
    opacity: 1;
    transform: translateY(-1px) rotate(45deg) scale(1);
}

.moeen-legal-consent input[type="checkbox"]:focus-visible + .moeen-legal-consent__box {
    outline: 2px solid rgba(53, 240, 227, .85);
    outline-offset: 3px;
}

.moeen-legal-consent__text {
    min-width: 0;
}

.moeen-legal-consent__text a {
    color: #e2b85e;
    font-weight: 900;
    text-decoration: none;
    text-underline-offset: 3px;
    transition: color var(--auth-transition), text-decoration-color var(--auth-transition);
}

.moeen-legal-consent__text a:hover,
.moeen-legal-consent__text a:focus-visible {
    color: #35f0e3;
    text-decoration: underline;
    text-decoration-color: rgba(53, 240, 227, .54);
}

/* Honeypot */
.moeen-hp {
    position: absolute !important;
    right: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ==========================================================
   05. Password Toggle - Final Clean
========================================================== */

.moeen-password-field,
.moeen-password-wrap {
    position: relative !important;
    display: block !important;
    width: 100% !important;
}

.moeen-password-field input,
.moeen-password-wrap input {
    padding-inline-end: 58px !important;
}

.moeen-password-toggle {
    position: absolute !important;
    inset-inline-end: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;

    display: inline-grid !important;
    place-items: center !important;

    border-radius: 13px !important;
    border: 1px solid rgba(38, 214, 203, 0.34) !important;
    background: rgba(38, 214, 203, 0.12) !important;

    color: #4ee8df !important;
    cursor: pointer !important;
    box-shadow: none !important;
    line-height: 1 !important;
    font-size: 0 !important;

    transition:
        background var(--auth-transition),
        border-color var(--auth-transition),
        color var(--auth-transition);
}

.moeen-password-toggle svg {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    pointer-events: none !important;
}

.moeen-password-toggle:hover {
    background: linear-gradient(135deg, #26d6cb, #4ee8df) !important;
    border-color: transparent !important;
    color: #021214 !important;
}

.moeen-password-toggle.is-visible {
    background: rgba(242, 201, 107, 0.14) !important;
    border-color: rgba(242, 201, 107, 0.42) !important;
    color: #f2c96b !important;
}

/* Prevent duplicate old buttons if any old markup remains */
.moeen-password-field > .moeen-password-toggle:not(:last-child),
.moeen-password-wrap > .moeen-password-toggle:not(:last-child) {
    display: none !important;
}

/* ==========================================================
   06. Remember Me
========================================================== */

.moeen-remember {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 9px !important;
    color: var(--auth-muted) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.moeen-remember input {
    width: 17px !important;
    height: 17px !important;
    min-height: 17px !important;
    accent-color: var(--auth-teal);
}

/* ==========================================================
   07. Buttons
========================================================== */

.moeen-auth-card .button,
.moeen-auth-card .btn,
.moeen-auth-card button,
.moeen-membership-page .woocommerce .button {
    width: 100%;
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 18px;
    border: 0 !important;
    border-radius: 16px !important;

    background: linear-gradient(135deg, var(--auth-teal), var(--auth-teal-2)) !important;
    color: #021214 !important;

    font-family: inherit;
    font-size: 14.5px;
    font-weight: 950 !important;
    text-decoration: none !important;

    cursor: pointer;
    box-shadow: 0 16px 38px rgba(38, 214, 203, 0.12);

    transition:
        transform var(--auth-transition),
        filter var(--auth-transition),
        background var(--auth-transition),
        color var(--auth-transition);
}

.moeen-auth-card .button:hover,
.moeen-auth-card .btn:hover,
.moeen-auth-card button:hover,
.moeen-membership-page .woocommerce .button:hover {
    transform: translateY(-2px);
    filter: brightness(1.04) saturate(1.05);
}

/* Keep password toggle from inheriting full button style */
.moeen-auth-card .moeen-password-toggle {
    width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    line-height: 1 !important;
    box-shadow: none !important;
}

/* ==========================================================
   08. Auth Links
========================================================== */

.moeen-auth-links {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(38, 214, 203, 0.12);
}

.moeen-auth-links a {
    color: var(--auth-teal-2);
    font-size: 13.5px !important;
    font-weight: 950;
    text-decoration: none;
    border-bottom: 1px dashed rgba(78, 232, 223, 0.45);

    transition:
        color var(--auth-transition),
        border-color var(--auth-transition);
}

.moeen-auth-links a:hover {
    color: var(--auth-gold);
    border-color: rgba(242, 201, 107, 0.55);
}

/* Arabic inline validation */
.moeen-field-error {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: -6px 2px 2px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 115, 115, 0.30);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 115, 115, 0.12), rgba(255, 115, 115, 0.055));
    color: #ffc0c0;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.75;
    text-align: right;
    box-shadow: inset 3px 0 0 rgba(255, 115, 115, 0.62);
    animation: moeenFieldErrorIn 180ms ease-out both;
}

.moeen-field-error::before {
    content: "!";
    display: grid;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    place-items: center;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(255, 115, 115, 0.18);
    color: #ffd0d0;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.moeen-auth-card label.is-invalid input:not([type="checkbox"]),
.moeen-auth-card input[aria-invalid="true"]:not([type="checkbox"]) {
    border-color: rgba(255, 115, 115, 0.72) !important;
    box-shadow: 0 0 0 3px rgba(255, 115, 115, 0.09) !important;
}

.moeen-auth-card .moeen-legal-consent.is-invalid {
    border-color: rgba(255, 115, 115, 0.58) !important;
    background: rgba(255, 115, 115, 0.075) !important;
    box-shadow: 0 0 0 3px rgba(255, 115, 115, 0.07);
}

.moeen-auth-card .moeen-legal-consent.is-invalid .moeen-legal-consent__box {
    border-color: rgba(255, 115, 115, 0.82);
    box-shadow: 0 0 0 4px rgba(255, 115, 115, 0.08);
}

@keyframes moeenFieldErrorIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .moeen-field-error { animation: none; }
}
/* ==========================================================
   09. Notices
========================================================== */

.moeen-auth-notice,
.moeen-membership-page .woocommerce-message,
.moeen-membership-page .woocommerce-info,
.moeen-membership-page .woocommerce-error {
    margin: 0 0 16px;
    padding: 13px 15px;
    border-radius: 16px;
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.8;
}

.moeen-auth-notice.is-error,
.moeen-membership-page .woocommerce-error {
    border: 1px solid rgba(255, 115, 115, 0.28);
    background: rgba(255, 115, 115, 0.09);
    color: #ffb3b3;
}

.moeen-auth-notice.is-success,
.moeen-membership-page .woocommerce-message {
    border: 1px solid rgba(38, 214, 203, 0.25);
    background: rgba(38, 214, 203, 0.09);
    color: var(--auth-teal-2);
}

.moeen-auth-notice--purchase {
    display: grid;
    gap: 3px;
    border: 1px solid rgba(242, 201, 107, 0.28);
    background:
        radial-gradient(circle at 10% 15%, rgba(242, 201, 107, 0.10), transparent 36%),
        rgba(242, 201, 107, 0.055);
    color: rgba(236, 252, 252, 0.82);
}

.moeen-auth-notice--purchase strong {
    color: #f2c96b;
}

.moeen-auth-notice--purchase span {
    font-weight: 700;
}

.moeen-membership-page .woocommerce-info {
    border: 1px solid rgba(242, 201, 107, 0.25);
    background: rgba(242, 201, 107, 0.08);
    color: rgba(236, 252, 252, 0.84);
}





/* ==========================================================
   Moeen Lost Password Confirmation - Final WooCommerce Override
========================================================== */

.moeen-membership-page .moeen-auth-wrap.rev {
    width: min(560px, calc(100% - 32px)) !important;
    margin: 0 auto !important;
}

.moeen-membership-page .moeen-auth-wrap.rev > .woocommerce,
.moeen-membership-page .moeen-auth-wrap.rev .woocommerce {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.moeen-lost-sent-final {
    
    overflow: hidden;
   width: min(680px, 90%);
margin-inline: auto;
margin-bottom: 100px;
    padding: 30px 26px 26px;
    border: 1px solid rgba(38, 214, 203, 0.24);
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0%, rgba(38, 214, 203, 0.16), transparent 42%),
        radial-gradient(circle at 0% 100%, rgba(242, 201, 107, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(10, 25, 36, 0.97), rgba(4, 10, 15, 0.98));
    box-shadow:
        0 28px 78px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
    direction: rtl;
    
}

.moeen-lost-sent-final::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255,255,255,.055), transparent 34%),
        radial-gradient(circle at 50% 0%, rgba(38,214,203,.08), transparent 42%);
}

.moeen-lost-sent-final > * {
    position: relative;
    z-index: 1;
}

.moeen-lost-sent-final__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 21px;
    border: 1px solid rgba(242, 201, 107, 0.38);
    background: rgba(242, 201, 107, 0.12);
    color: #f2c96b;
    box-shadow: 0 16px 36px rgba(242, 201, 107, 0.08);
}

.moeen-lost-sent-final__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.moeen-lost-sent-final__kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    margin-bottom: 12px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(38, 214, 203, 0.24);
    background: rgba(38, 214, 203, 0.08);
    color: #4ee8df;
    font-size: 12px;
    font-weight: 950;
}

.moeen-lost-sent-final h2 {
    margin: 0 0 10px !important;
    color: #ffffff !important;
    font-size: clamp(25px, 3vw, 34px) !important;
    line-height: 1.35 !important;
    font-weight: 950 !important;
    letter-spacing: -0.02em;
}

.moeen-lost-sent-final p {
    margin: 0 auto !important;
    max-width: 410px;
    color: rgba(236, 252, 252, 0.74) !important;
    font-size: 14.5px !important;
    font-weight: 750 !important;
    line-height: 1.95 !important;
}

.moeen-lost-sent-final small {
    display: block;
    margin: 9px auto 0;
    max-width: 390px;
    color: rgba(236, 252, 252, 0.56);
    font-size: 12.8px;
    font-weight: 700;
    line-height: 1.8;
}

.moeen-lost-sent-final__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 22px;
}

.moeen-lost-sent-final__actions a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 15px;
    font-size: 13.5px;
    font-weight: 950;
    text-decoration: none !important;
    transition:
        transform .18s ease,
        border-color .18s ease,
        color .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.moeen-lost-sent-final__actions .is-primary {
    border: 0;
    background: linear-gradient(135deg, #26d6cb, #4ee8df);
    color: #021214 !important;
    box-shadow: 0 12px 26px rgba(38, 214, 203, 0.14);
}

.moeen-lost-sent-final__actions .is-secondary {
    border: 1px solid rgba(38, 214, 203, 0.26);
    background: rgba(255, 255, 255, 0.035);
    color: #ecfcfc !important;
}

.moeen-lost-sent-final__actions a:hover {
    transform: translateY(-2px);
}

.moeen-lost-sent-final__actions .is-secondary:hover {
    color: #f2c96b !important;
    border-color: rgba(242, 201, 107, 0.45);
}

@media (max-width: 600px) {
    .moeen-membership-page .moeen-auth-wrap.rev {
        width: min(420px, calc(100% - 28px)) !important;
        margin: 0 auto !important;
    }

    .moeen-lost-sent-final {
        padding: 26px 20px 22px;
        border-radius: 24px;
    }

    .moeen-lost-sent-final__actions {
        display: grid;
    }
}









/* ==========================================================
   Moeen Lost Password Endpoint Refinement 2026-06-15
   Scoped to the lost-password account endpoint only.
========================================================== */
.moeen-lost-password-page {
    --mlp-cyan: #26d6cb;
    --mlp-cyan-soft: #4ee8df;
    --mlp-gold: #f2c96b;
    --mlp-text: #f7ffff;
    --mlp-muted: rgba(236, 252, 252, .72);
    --mlp-border: rgba(38, 214, 203, .24);
    min-height: 72vh;
    padding: clamp(72px, 8vw, 112px) 18px clamp(78px, 9vw, 126px);
    color: var(--mlp-text);
    background:
        radial-gradient(circle at 84% 4%, rgba(38, 214, 203, .10), transparent 28rem),
        radial-gradient(circle at 12% 36%, rgba(242, 201, 107, .055), transparent 24rem),
        #02090d;
    direction: rtl;
}

.moeen-lost-password-page,
.moeen-lost-password-page * {
    box-sizing: border-box;
}

.moeen-lost-password-page .moeen-account-shell__wrap {
    width: min(1120px, 100%);
    margin-inline: auto;
}

.moeen-lost-password-page .moeen-account-shell__head {
    position: relative;
    display: block;
    width: min(920px, 100%);
    margin: 0 auto clamp(28px, 4vw, 44px);
    padding: clamp(28px, 4vw, 42px);
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(38, 214, 203, .18);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(38, 214, 203, .12), transparent 42%),
        radial-gradient(circle at 0% 100%, rgba(242, 201, 107, .07), transparent 35%),
        linear-gradient(145deg, rgba(9, 29, 39, .90), rgba(4, 13, 19, .86));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .045);
    backdrop-filter: blur(16px);
}

.moeen-lost-password-page .moeen-account-shell__head::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, .045), transparent 38%);
}

.moeen-lost-password-page .moeen-account-shell__meta {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
}

.moeen-lost-password-page .moeen-account-shell__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 14px;
    color: rgba(236, 252, 252, .52);
    font-size: 12px;
    font-weight: 800;
}

.moeen-lost-password-page .moeen-account-shell__breadcrumb a {
    color: var(--mlp-cyan-soft);
    text-decoration: none;
}

.moeen-lost-password-page .moeen-account-shell__kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    margin-bottom: 14px;
    padding: 7px 14px;
    color: var(--mlp-cyan-soft);
    font-size: 12px;
    font-weight: 900;
    border: 1px solid rgba(38, 214, 203, .25);
    border-radius: 999px;
    background: rgba(38, 214, 203, .075);
}

.moeen-lost-password-page .moeen-account-shell__head h1 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: 0;
}

.moeen-lost-password-page .moeen-account-shell__head p {
    max-width: 660px;
    margin: 0 auto;
    color: var(--mlp-muted);
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.9;
    font-weight: 700;
}

.moeen-lost-password-page .moeen-account-shell__summary {
    display: none;
}

.moeen-lost-password-page .moeen-account-shell__body {
    width: min(680px, 100%);
    margin-inline: auto;
}

.moeen-lost-password-page .moeen-account-shell__body > .woocommerce,
.moeen-lost-password-page .moeen-account-shell__body .woocommerce {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.moeen-lost-password-page form.lost_reset_password {
    position: relative;
    display: grid;
    gap: 18px;
    width: 100%;
    margin: 0;
    padding: clamp(26px, 4vw, 38px);
    overflow: hidden;
    border: 1px solid var(--mlp-border);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(38, 214, 203, .13), transparent 42%),
        radial-gradient(circle at 0% 100%, rgba(242, 201, 107, .065), transparent 34%),
        linear-gradient(180deg, rgba(10, 25, 36, .96), rgba(4, 10, 15, .98));
    box-shadow: 0 28px 78px rgba(0, 0, 0, .30), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.moeen-lost-password-page form.lost_reset_password::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 36%);
}

.moeen-lost-password-page form.lost_reset_password > * {
    position: relative;
    z-index: 1;
}

.moeen-lost-password-page form.lost_reset_password > p:first-child {
    max-width: 540px;
    margin: 0 auto 2px;
    color: var(--mlp-muted);
    text-align: center;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.9;
}

.moeen-lost-password-page form.lost_reset_password .form-row {
    float: none;
    width: 100%;
    margin: 0;
}

.moeen-lost-password-page form.lost_reset_password label {
    display: block;
    margin-bottom: 9px;
    color: rgba(247, 255, 255, .90);
    font-size: 13.5px;
    font-weight: 900;
}

.moeen-lost-password-page form.lost_reset_password input.input-text {
    width: 100%;
    min-height: 54px;
    padding: 13px 16px;
    color: #fff;
    font: inherit;
    font-size: 14.5px;
    font-weight: 750;
    text-align: right;
    border: 1px solid rgba(38, 214, 203, .30);
    border-radius: 16px;
    outline: 0;
    background: rgba(2, 12, 17, .72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.moeen-lost-password-page form.lost_reset_password input.input-text:focus {
    border-color: rgba(78, 232, 223, .72);
    background: rgba(4, 18, 25, .92);
    box-shadow: 0 0 0 4px rgba(38, 214, 203, .10);
}

.moeen-lost-password-page form.lost_reset_password button.button {
    min-height: 50px;
    min-width: 190px;
    padding: 12px 22px;
    border: 0;
    border-radius: 15px;
    color: #021214;
    font: inherit;
    font-size: 14px;
    font-weight: 950;
    background: linear-gradient(135deg, var(--mlp-cyan), var(--mlp-cyan-soft));
    box-shadow: 0 14px 30px rgba(38, 214, 203, .16);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

.moeen-lost-password-page form.lost_reset_password button.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(38, 214, 203, .22);
}

.moeen-lost-password-page form.lost_reset_password button.button:focus-visible {
    outline: 3px solid rgba(242, 201, 107, .72);
    outline-offset: 3px;
}

.moeen-lost-password-page .moeen-lost-sent-final {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 40px);
}

@media (max-width: 720px) {
    .moeen-lost-password-page {
        padding: 62px 14px 82px;
    }

    .moeen-lost-password-page .moeen-account-shell__head {
        margin-bottom: 24px;
        padding: 25px 18px;
        border-radius: 22px;
    }

    .moeen-lost-password-page .moeen-account-shell__breadcrumb {
        flex-wrap: wrap;
    }

    .moeen-lost-password-page .moeen-account-shell__head h1 {
        font-size: clamp(29px, 9vw, 40px);
    }

    .moeen-lost-password-page form.lost_reset_password,
    .moeen-lost-password-page .moeen-lost-sent-final {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .moeen-lost-password-page form.lost_reset_password button.button {
        width: 100%;
    }
}
/* ==========================================================
   Lost password — compact, focused recovery flow
   ========================================================== */
.moeen-lost-password-page {
    min-height: auto;
    padding: 104px 16px clamp(70px, 8vw, 108px);
    background:
        radial-gradient(circle at 12% 12%, rgba(242, 201, 107, .045), transparent 24rem),
        radial-gradient(circle at 88% 4%, rgba(38, 214, 203, .065), transparent 28rem),
        #02090d;
}

.moeen-lost-password-page .moeen-account-shell__wrap {
    width: min(1180px, 100%);
}

.moeen-lost-password-page .moeen-account-shell__head {
    width: 100%;
    max-width: none;
    margin: 0 0 30px;
    padding: 0 0 30px;
    overflow: visible;
    border: 0;
    border-bottom: 1px solid rgba(38, 214, 203, .11);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    text-align: right;
}

.moeen-lost-password-page .moeen-account-shell__head::before {
    content: none;
}

.moeen-lost-password-page .moeen-account-shell__meta {
    max-width: 780px;
    justify-items: start;
}

.moeen-lost-password-page .moeen-account-shell__breadcrumb {
    justify-content: flex-start;
    margin-bottom: 16px;
    font-size: 12px;
    text-align: right;
}

.moeen-lost-password-page .moeen-account-shell__kicker {
    display: none;
}

.moeen-lost-password-page .moeen-account-shell__head h1 {
    margin-bottom: 7px;
    font-size: clamp(36px, 4.5vw, 54px);
    line-height: 1.16;
    text-align: right;
}

.moeen-lost-password-page .moeen-account-shell__head p {
    max-width: 680px;
    margin: 0;
    color: rgba(236, 252, 252, .68);
    font-size: 15px;
    line-height: 1.85;
    text-align: right;
}

.moeen-lost-password-page .moeen-account-shell__body {
    width: min(560px, 100%);
}

.moeen-lost-password-page form.lost_reset_password {
    gap: 15px;
    padding: clamp(22px, 3vw, 28px);
    border-color: rgba(38, 214, 203, .2);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 52%),
        rgba(7, 22, 30, .88);
    box-shadow: 0 22px 58px rgba(0, 0, 0, .24);
    animation: moeen-lost-form-reveal 420ms cubic-bezier(.22, 1, .36, 1) both;
}

.moeen-lost-password-page form.lost_reset_password::before {
    content: none;
}

/* The same instruction already appears in the compact hero. */
.moeen-lost-password-page form.lost_reset_password > p:first-child {
    display: none;
}

.moeen-lost-password-page form.lost_reset_password label {
    margin-bottom: 8px;
    font-size: 13px;
}

.moeen-lost-password-page form.lost_reset_password input.input-text {
    min-height: 50px;
    padding: 12px 15px;
    border-color: rgba(255, 255, 255, .13);
    border-radius: 14px;
    background: rgba(1, 10, 15, .72);
    font-size: 14px;
}

.moeen-lost-password-page form.lost_reset_password input.input-text::placeholder {
    color: rgba(236, 252, 252, .34);
    opacity: 1;
}

.moeen-lost-password-page form.lost_reset_password button.button {
    width: 100%;
    min-height: 50px;
    margin-top: 3px;
    border-radius: 14px;
}

.moeen-lost-password-page form.lost_reset_password button.button:hover {
    transform: translateY(-1px);
}

.moeen-lost-password-page .moeen-lost-password-login-link {
    margin: 0;
    text-align: center;
}

.moeen-lost-password-page .moeen-lost-password-login-link a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    color: rgba(236, 252, 252, .62);
    font-size: 12.5px;
    font-weight: 800;
    text-decoration: none;
    transition: color .2s ease;
}

.moeen-lost-password-page .moeen-lost-password-login-link a:hover,
.moeen-lost-password-page .moeen-lost-password-login-link a:focus-visible {
    color: var(--mlp-gold);
    outline: none;
}

.moeen-lost-password-page .woocommerce-error,
.moeen-lost-password-page .woocommerce-message,
.moeen-lost-password-page .woocommerce-info {
    width: min(560px, 100%);
    margin: 0 auto 16px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.75;
}

.moeen-lost-password-page .moeen-lost-sent-final {
    max-width: 560px;
    padding: 24px;
    border-radius: 20px;
    animation: moeen-lost-form-reveal 420ms cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes moeen-lost-form-reveal {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.992);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 720px) {
    .moeen-lost-password-page {
        padding: 84px 16px 72px;
    }

    .moeen-lost-password-page .moeen-account-shell__head {
        margin-bottom: 22px;
        padding: 0 0 22px;
        border-radius: 0;
    }

    .moeen-lost-password-page .moeen-account-shell__head h1 {
        font-size: clamp(32px, 10vw, 42px);
    }

    .moeen-lost-password-page .moeen-account-shell__head p {
        font-size: 14px;
    }

    .moeen-lost-password-page form.lost_reset_password,
    .moeen-lost-password-page .moeen-lost-sent-final {
        padding: 20px 16px;
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .moeen-lost-password-page form.lost_reset_password,
    .moeen-lost-password-page .moeen-lost-sent-final {
        animation: none;
    }
}

/* ==========================================================
   Moeen Google Login
========================================================== */

.maeen-social-login {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    direction: rtl;
}

.maeen-social-login__divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    color: rgba(236, 252, 252, .58);
    font-size: 12px;
    font-weight: 800;
}

.maeen-social-login__divider::before,
.maeen-social-login__divider::after {
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(38, 214, 203, .22), transparent);
}

.maeen-social-login__button {
    min-height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    border: 1px solid rgba(217, 177, 94, .48) !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, rgba(217, 177, 94, .14), rgba(5, 21, 30, .78)) !important;
    color: #d9b15e !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .055),
        0 12px 28px rgba(217, 177, 94, .08) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    transition: border-color .25s ease, background .25s ease, transform .25s ease, color .25s ease !important;
}

.maeen-social-login__button:focus-visible {
    transform: none !important;
    border-color: rgba(217, 177, 94, .72) !important;
    background: linear-gradient(180deg, rgba(217, 177, 94, .14), rgba(5, 21, 30, .78)) !important;
    color: #d9b15e !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .055),
        0 12px 28px rgba(217, 177, 94, .08) !important;
    outline: none !important;
}

.maeen-social-login__button:hover {
    transform: none !important;
    border-color: rgba(217, 177, 94, .68) !important;
    background: #03070a !important;
    color: #edc873 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .055),
        0 12px 28px rgba(0, 0, 0, .26) !important;
}

.maeen-social-login__button:focus-visible {
    outline: 3px solid rgba(217, 177, 94, .16) !important;
    outline-offset: 3px !important;
}

.maeen-social-login__button:disabled {
    cursor: not-allowed !important;
    opacity: .58 !important;
    transform: none !important;
}

.maeen-social-login__google-mark {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: inherit;
}

.maeen-social-login__google-mark svg {
    display: block;
    width: 100%;
    height: 100%;
}

.maeen-social-login [data-social-status] {
    min-height: 18px;
    color: rgba(236, 252, 252, .64);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.6;
    text-align: center;
}

.maeen-social-login [data-social-status].is-error {
    color: #f2c96b;
}

/* ==========================================================
   Compact auth layout - mobile only
========================================================== */

@media (max-width: 600px) {
    .moeen-membership-page > .section {
        padding-top: 14px !important;
        padding-bottom: 54px !important;
    }

    .moeen-auth-card {
        padding: 22px 18px 20px !important;
        border-radius: 24px;
    }

    .moeen-auth-card::before {
        width: 130px;
        height: 130px;
        inset-inline-start: -58px;
        inset-block-start: -58px;
    }

    .moeen-auth-logo {
        margin-bottom: 9px;
    }

    .moeen-auth-logo img {
        max-width: 102px;
    }

    .moeen-auth-card .kicker {
        margin-bottom: 8px;
        font-size: 11px !important;
    }

    .moeen-auth-card h2 {
        margin: 3px 0 6px !important;
        font-size: clamp(27px, 8vw, 30px) !important;
        line-height: 1.28;
    }

    .moeen-auth-card p,
    .moeen-auth-card .moeen-auth-intro {
        margin-bottom: 16px !important;
        font-size: 13px !important;
        line-height: 1.75 !important;
    }

    .moeen-auth-card form,
    .moeen-login-form,
    .moeen-signup-form {
        gap: 12px !important;
    }

    .moeen-auth-card label {
        gap: 6px;
        font-size: 12.5px;
    }

    .moeen-auth-card input.input,
    .moeen-auth-card input[type="text"],
    .moeen-auth-card input[type="email"],
    .moeen-auth-card input[type="password"],
    .moeen-auth-card input[type="tel"],
    .moeen-membership-page .woocommerce input.input-text,
    .moeen-membership-page .woocommerce input[type="text"],
    .moeen-membership-page .woocommerce input[type="email"],
    .moeen-membership-page .woocommerce input[type="password"],
    .moeen-membership-page .woocommerce input[type="tel"] {
        min-height: 50px !important;
        padding: 10px 13px !important;
        border-radius: 14px !important;
        font-size: 13.5px !important;
    }

    .moeen-auth-card .button,
    .moeen-auth-card .btn,
    .moeen-auth-card button,
    .moeen-membership-page .woocommerce .button,
    .maeen-social-login__button {
        min-height: 50px !important;
        padding: 10px 14px !important;
        border-radius: 14px !important;
        font-size: 13.5px !important;
    }

    .moeen-auth-card .moeen-password-toggle {
        width: 38px !important;
        height: 38px !important;
        min-height: 38px !important;
        padding: 0 !important;
    }

    .moeen-remember {
        gap: 7px !important;
        font-size: 12.5px !important;
    }

    .moeen-field-help {
        margin-top: -5px;
        font-size: 10.75px;
        line-height: 1.55;
    }

    .moeen-auth-card .moeen-legal-consent {
        gap: 9px;
        padding: 10px 11px;
        border-radius: 12px;
        font-size: 11.5px;
        line-height: 1.65;
    }

    .moeen-legal-consent__box {
        width: 18px;
        height: 18px;
    }

    .maeen-social-login {
        gap: 9px;
        margin-top: 13px;
    }

    .maeen-social-login__divider {
        gap: 10px;
        font-size: 12px;
    }

    .maeen-social-login__google-mark {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .maeen-social-login [data-social-status] {
        min-height: 0;
        font-size: 11px;
    }

    .moeen-auth-links {
        justify-content: center;
        gap: 8px 14px;
        margin-top: 13px;
        padding-top: 12px;
        text-align: center;
    }

    .moeen-auth-links a {
        font-size: 12.5px !important;
    }
}