/* /Layout/MainLayout.razor.rz.scp.css */
/* HiTaxi layout styling lives in wwwroot/css/hitaxi.css (global, targets MudBlazor's DOM). */
/* /Layout/NavMenu.razor.rz.scp.css */
/* HiTaxi nav styling lives in wwwroot/css/hitaxi.css (global, targets MudBlazor's DOM). */
/* /Pages/AuthPages/ChangePasswordPage.razor.rz.scp.css */
/* HiTaxi login — adapted from samples/hitaxiloginpage.html (RTL, Cairo, yellow/black) */

.login-bg[b-itz299lrjg] {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 214, 0, 0.34), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
}

.login-wrapper[b-itz299lrjg] {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: "Cairo", sans-serif;
    color: #111111;
}

.page[b-itz299lrjg] {
    width: 100%;
    max-width: 920px;
    min-height: 560px;
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(17, 17, 17, 0.12);
    animation: pageIn-b-itz299lrjg 0.65s ease both;
}

@keyframes pageIn-b-itz299lrjg {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.visual[b-itz299lrjg] {
    position: relative;
    background: #FFD600;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.visual[b-itz299lrjg]::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    top: -120px;
    left: -100px;
    animation: floatingCircle-b-itz299lrjg 6s ease-in-out infinite;
}

.visual[b-itz299lrjg]::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 40px;
    border: 24px solid rgba(17, 17, 17, 0.08);
    bottom: -65px;
    right: -55px;
    transform: rotate(18deg);
    animation: rotateShape-b-itz299lrjg 9s linear infinite;
}

@keyframes floatingCircle-b-itz299lrjg {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(16px); }
}

@keyframes rotateShape-b-itz299lrjg {
    from { transform: rotate(18deg); }
    to   { transform: rotate(378deg); }
}

.brand[b-itz299lrjg] { position: relative; z-index: 2; }

.logo[b-itz299lrjg] {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #111111;
    line-height: 1;
    margin-bottom: 16px;
}

.tagline[b-itz299lrjg] {
    max-width: 390px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.9;
}

.taxi-card[b-itz299lrjg] {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 350px;
    background: #111111;
    color: #ffffff;
    border-radius: 26px;
    padding: 22px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
    animation: cardFloat-b-itz299lrjg 4.2s ease-in-out infinite;
}

@keyframes cardFloat-b-itz299lrjg {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}

.taxi-top[b-itz299lrjg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 14px;
}

.taxi-title[b-itz299lrjg] { font-size: 20px; font-weight: 900; }
.taxi-subtitle[b-itz299lrjg] { font-size: 12px; color: rgba(255, 255, 255, 0.66); margin-top: 5px; }

.taxi-icon[b-itz299lrjg] {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #111111;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 22px;
    flex: 0 0 auto;
}

.stats[b-itz299lrjg] { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.stat[b-itz299lrjg] {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
}

.stat strong[b-itz299lrjg] { display: block; font-size: 16px; margin-bottom: 3px; }
.stat span[b-itz299lrjg] { font-size: 11px; color: rgba(255, 255, 255, 0.68); }

.login-section[b-itz299lrjg] {
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box[b-itz299lrjg] {
    width: 100%;
    max-width: 330px;
    animation: loginIn-b-itz299lrjg 0.75s ease 0.12s both;
}

@keyframes loginIn-b-itz299lrjg {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: translateX(0); }
}

.mini-logo[b-itz299lrjg] { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; }

.mini-logo-mark[b-itz299lrjg] {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #111111;
    color: #FFD600;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 21px;
    line-height: 1;
}

.mini-logo-text[b-itz299lrjg] { font-size: 23px; font-weight: 900; letter-spacing: -0.5px; }

h1[b-itz299lrjg] { margin: 0 0 6px; font-size: 27px; font-weight: 900; letter-spacing: -0.5px; }

.subtitle[b-itz299lrjg] { margin: 0 0 22px; color: #777777; font-size: 13px; line-height: 1.8; }

.form-group[b-itz299lrjg] { margin-bottom: 14px; }

label[b-itz299lrjg] { display: block; margin-bottom: 7px; font-size: 12.5px; font-weight: 800; }

.input-wrap[b-itz299lrjg] { position: relative; }

.input-wrap[b-itz299lrjg]::before {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
    height: 29px;
    background: rgba(255, 214, 0, 0.22);
    border-radius: 10px;
    z-index: 1;
    transition: 0.25s ease;
}

.input-icon[b-itz299lrjg] {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #111111;
    font-size: 13px;
    z-index: 2;
    transition: 0.25s ease;
    pointer-events: none;
}

input[b-itz299lrjg] {
    width: 100%;
    height: 48px;
    border: 1px solid #e8e8e8;
    background: #f7f7f7;
    border-radius: 15px;
    padding: 0 54px 0 14px;
    font-family: inherit;
    font-size: 13.5px;
    outline: none;
    transition: 0.25s ease;
    color: #111111;
}

input[b-itz299lrjg]::placeholder { color: #a0a0a0; }

input:focus[b-itz299lrjg] {
    background: #ffffff;
    border-color: #FFD600;
    box-shadow: 0 0 0 4px rgba(255, 214, 0, 0.22);
}

.input-wrap:focus-within[b-itz299lrjg]::before {
    background: #FFD600;
    transform: translateY(-50%) scale(1.05);
}

.input-wrap:focus-within .input-icon[b-itz299lrjg] { transform: translateY(-50%) scale(1.08); }

.error-text[b-itz299lrjg] {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #b91c1c;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 4px;
}

.options[b-itz299lrjg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0 20px;
    font-size: 12.5px;
    gap: 12px;
}

.remember[b-itz299lrjg] {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #444;
    font-weight: 700;
    margin-bottom: 0;
    cursor: pointer;
}

.remember input[b-itz299lrjg] {
    width: 15px;
    height: 15px;
    accent-color: #FFD600;
    cursor: pointer;
}

.forgot[b-itz299lrjg] {
    color: #111111;
    text-decoration: none;
    font-weight: 900;
    transition: 0.2s ease;
    white-space: nowrap;
}

.forgot:hover[b-itz299lrjg] { color: #7a6500; }

.login-btn[b-itz299lrjg] {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 16px;
    background: #111111;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.login-btn[b-itz299lrjg]::before {
    content: "";
    position: absolute;
    top: 0;
    right: -90px;
    width: 65px;
    height: 100%;
    background: rgba(255, 255, 255, 0.24);
    transform: skewX(-25deg);
    transition: 0.45s ease;
}

.login-btn:hover[b-itz299lrjg] { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(17, 17, 17, 0.22); }
.login-btn:hover[b-itz299lrjg]::before { right: 112%; }
.login-btn:disabled[b-itz299lrjg] { opacity: 0.7; cursor: default; transform: none; box-shadow: none; }

.footer-text[b-itz299lrjg] { margin-top: 20px; text-align: center; font-size: 11.5px; color: #999; }

.highlight[b-itz299lrjg] { color: #111111; font-weight: 900; }

.mobile-top[b-itz299lrjg] { display: none; }

@media (max-width: 850px) {
    .login-wrapper[b-itz299lrjg] { padding: 0; align-items: stretch; }

    .login-bg[b-itz299lrjg] { background: #ffffff; }

    .page[b-itz299lrjg] {
        width: 100%;
        max-width: none;
        min-height: 100vh;
        display: block;
        border-radius: 0;
        box-shadow: none;
        border: none;
        background: #ffffff;
        animation: mobileIn-b-itz299lrjg 0.55s ease both;
    }

    @keyframes mobileIn-b-itz299lrjg {
        from { opacity: 0; transform: translateY(12px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .visual[b-itz299lrjg] { display: none; }

    .mobile-top[b-itz299lrjg] {
        display: block;
        position: relative;
        min-height: 250px;
        background: #FFD600;
        padding: 30px 24px;
        border-bottom-left-radius: 34px;
        border-bottom-right-radius: 34px;
        overflow: hidden;
    }

    .mobile-top[b-itz299lrjg]::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.24);
        top: -75px;
        left: -60px;
        animation: floatingCircle-b-itz299lrjg 6s ease-in-out infinite;
    }

    .mobile-top[b-itz299lrjg]::after {
        content: "";
        position: absolute;
        width: 135px;
        height: 135px;
        border-radius: 30px;
        border: 18px solid rgba(17, 17, 17, 0.07);
        right: -45px;
        bottom: -35px;
        transform: rotate(18deg);
    }

    .mobile-logo[b-itz299lrjg] {
        position: relative;
        z-index: 2;
        font-size: 34px;
        font-weight: 900;
        letter-spacing: -1.4px;
        line-height: 1;
        margin-bottom: 18px;
    }

    .mobile-title[b-itz299lrjg] {
        position: relative;
        z-index: 2;
        font-size: 22px;
        font-weight: 900;
        margin-bottom: 8px;
    }

    .mobile-subtitle[b-itz299lrjg] {
        position: relative;
        z-index: 2;
        max-width: 310px;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.8;
    }

    .login-section[b-itz299lrjg] {
        min-height: calc(100vh - 250px);
        padding: 0 22px 28px;
        align-items: flex-start;
    }

    .login-box[b-itz299lrjg] {
        max-width: 360px;
        margin: -48px auto 0;
        background: #ffffff;
        border-radius: 26px;
        padding: 24px 20px 22px;
        box-shadow: 0 18px 48px rgba(17, 17, 17, 0.12);
        border: 1px solid rgba(17, 17, 17, 0.04);
        position: relative;
        z-index: 5;
    }

    .mini-logo[b-itz299lrjg] { display: none; }

    h1[b-itz299lrjg] { font-size: 24px; }
    .subtitle[b-itz299lrjg] { font-size: 12.8px; margin-bottom: 20px; }
    input[b-itz299lrjg] { height: 48px; }
    .login-btn[b-itz299lrjg] { height: 50px; }
}

@media (max-width: 420px) {
    .mobile-top[b-itz299lrjg] { min-height: 245px; padding: 28px 22px; }
    .mobile-logo[b-itz299lrjg] { font-size: 32px; }
    .mobile-title[b-itz299lrjg] { font-size: 21px; }
    .mobile-subtitle[b-itz299lrjg] { font-size: 13.5px; }

    .login-section[b-itz299lrjg] { min-height: calc(100vh - 245px); padding: 0 18px 24px; }

    .login-box[b-itz299lrjg] { max-width: 100%; margin-top: -46px; padding: 22px 18px 20px; border-radius: 24px; }

    .options[b-itz299lrjg] { align-items: flex-start; flex-direction: column; gap: 9px; }
}
/* /Pages/AuthPages/LoginPage.razor.rz.scp.css */
/* HiTaxi login — adapted from samples/hitaxiloginpage.html (RTL, Cairo, yellow/black) */

.login-bg[b-czxfhay94a] {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 214, 0, 0.34), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
}

.login-wrapper[b-czxfhay94a] {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: "Cairo", sans-serif;
    color: #111111;
}

.page[b-czxfhay94a] {
    width: 100%;
    max-width: 920px;
    min-height: 560px;
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(17, 17, 17, 0.12);
    animation: pageIn-b-czxfhay94a 0.65s ease both;
}

@keyframes pageIn-b-czxfhay94a {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.visual[b-czxfhay94a] {
    position: relative;
    background: #FFD600;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.visual[b-czxfhay94a]::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    top: -120px;
    left: -100px;
    animation: floatingCircle-b-czxfhay94a 6s ease-in-out infinite;
}

.visual[b-czxfhay94a]::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 40px;
    border: 24px solid rgba(17, 17, 17, 0.08);
    bottom: -65px;
    right: -55px;
    transform: rotate(18deg);
    animation: rotateShape-b-czxfhay94a 9s linear infinite;
}

@keyframes floatingCircle-b-czxfhay94a {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(16px); }
}

@keyframes rotateShape-b-czxfhay94a {
    from { transform: rotate(18deg); }
    to   { transform: rotate(378deg); }
}

.brand[b-czxfhay94a] { position: relative; z-index: 2; }

.logo[b-czxfhay94a] {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #111111;
    line-height: 1;
    margin-bottom: 16px;
}

.tagline[b-czxfhay94a] {
    max-width: 390px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.9;
}

.taxi-card[b-czxfhay94a] {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 350px;
    background: #111111;
    color: #ffffff;
    border-radius: 26px;
    padding: 22px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
    animation: cardFloat-b-czxfhay94a 4.2s ease-in-out infinite;
}

@keyframes cardFloat-b-czxfhay94a {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}

.taxi-top[b-czxfhay94a] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 14px;
}

.taxi-title[b-czxfhay94a] { font-size: 20px; font-weight: 900; }
.taxi-subtitle[b-czxfhay94a] { font-size: 12px; color: rgba(255, 255, 255, 0.66); margin-top: 5px; }

.taxi-icon[b-czxfhay94a] {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #111111;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 22px;
    flex: 0 0 auto;
}

.stats[b-czxfhay94a] { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.stat[b-czxfhay94a] {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px;
}

.stat strong[b-czxfhay94a] { display: block; font-size: 16px; margin-bottom: 3px; }
.stat span[b-czxfhay94a] { font-size: 11px; color: rgba(255, 255, 255, 0.68); }

.login-section[b-czxfhay94a] {
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box[b-czxfhay94a] {
    width: 100%;
    max-width: 330px;
    animation: loginIn-b-czxfhay94a 0.75s ease 0.12s both;
}

@keyframes loginIn-b-czxfhay94a {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: translateX(0); }
}

.mini-logo[b-czxfhay94a] { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; }

.mini-logo-mark[b-czxfhay94a] {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #111111;
    color: #FFD600;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 21px;
    line-height: 1;
}

.mini-logo-text[b-czxfhay94a] { font-size: 23px; font-weight: 900; letter-spacing: -0.5px; }

h1[b-czxfhay94a] { margin: 0 0 6px; font-size: 27px; font-weight: 900; letter-spacing: -0.5px; }

.subtitle[b-czxfhay94a] { margin: 0 0 22px; color: #777777; font-size: 13px; line-height: 1.8; }

.form-group[b-czxfhay94a] { margin-bottom: 14px; }

label[b-czxfhay94a] { display: block; margin-bottom: 7px; font-size: 12.5px; font-weight: 800; }

.input-wrap[b-czxfhay94a] { position: relative; }

.input-wrap[b-czxfhay94a]::before {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
    height: 29px;
    background: rgba(255, 214, 0, 0.22);
    border-radius: 10px;
    z-index: 1;
    transition: 0.25s ease;
}

.input-icon[b-czxfhay94a] {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #111111;
    font-size: 13px;
    z-index: 2;
    transition: 0.25s ease;
    pointer-events: none;
}

input[b-czxfhay94a] {
    width: 100%;
    height: 48px;
    border: 1px solid #e8e8e8;
    background: #f7f7f7;
    border-radius: 15px;
    padding: 0 54px 0 14px;
    font-family: inherit;
    font-size: 13.5px;
    outline: none;
    transition: 0.25s ease;
    color: #111111;
}

input[b-czxfhay94a]::placeholder { color: #a0a0a0; }

input:focus[b-czxfhay94a] {
    background: #ffffff;
    border-color: #FFD600;
    box-shadow: 0 0 0 4px rgba(255, 214, 0, 0.22);
}

.input-wrap:focus-within[b-czxfhay94a]::before {
    background: #FFD600;
    transform: translateY(-50%) scale(1.05);
}

.input-wrap:focus-within .input-icon[b-czxfhay94a] { transform: translateY(-50%) scale(1.08); }

.error-text[b-czxfhay94a] {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #b91c1c;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 4px;
}

.options[b-czxfhay94a] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0 20px;
    font-size: 12.5px;
    gap: 12px;
}

.remember[b-czxfhay94a] {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #444;
    font-weight: 700;
    margin-bottom: 0;
    cursor: pointer;
}

.remember input[b-czxfhay94a] {
    width: 15px;
    height: 15px;
    accent-color: #FFD600;
    cursor: pointer;
}

.forgot[b-czxfhay94a] {
    color: #111111;
    text-decoration: none;
    font-weight: 900;
    transition: 0.2s ease;
    white-space: nowrap;
}

.forgot:hover[b-czxfhay94a] { color: #7a6500; }

.login-btn[b-czxfhay94a] {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 16px;
    background: #111111;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.login-btn[b-czxfhay94a]::before {
    content: "";
    position: absolute;
    top: 0;
    right: -90px;
    width: 65px;
    height: 100%;
    background: rgba(255, 255, 255, 0.24);
    transform: skewX(-25deg);
    transition: 0.45s ease;
}

.login-btn:hover[b-czxfhay94a] { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(17, 17, 17, 0.22); }
.login-btn:hover[b-czxfhay94a]::before { right: 112%; }
.login-btn:disabled[b-czxfhay94a] { opacity: 0.7; cursor: default; transform: none; box-shadow: none; }

.footer-text[b-czxfhay94a] { margin-top: 20px; text-align: center; font-size: 11.5px; color: #999; }

.highlight[b-czxfhay94a] { color: #111111; font-weight: 900; }

.mobile-top[b-czxfhay94a] { display: none; }

@media (max-width: 850px) {
    .login-wrapper[b-czxfhay94a] { padding: 0; align-items: stretch; }

    .login-bg[b-czxfhay94a] { background: #ffffff; }

    .page[b-czxfhay94a] {
        width: 100%;
        max-width: none;
        min-height: 100vh;
        display: block;
        border-radius: 0;
        box-shadow: none;
        border: none;
        background: #ffffff;
        animation: mobileIn-b-czxfhay94a 0.55s ease both;
    }

    @keyframes mobileIn-b-czxfhay94a {
        from { opacity: 0; transform: translateY(12px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .visual[b-czxfhay94a] { display: none; }

    .mobile-top[b-czxfhay94a] {
        display: block;
        position: relative;
        min-height: 250px;
        background: #FFD600;
        padding: 30px 24px;
        border-bottom-left-radius: 34px;
        border-bottom-right-radius: 34px;
        overflow: hidden;
    }

    .mobile-top[b-czxfhay94a]::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.24);
        top: -75px;
        left: -60px;
        animation: floatingCircle-b-czxfhay94a 6s ease-in-out infinite;
    }

    .mobile-top[b-czxfhay94a]::after {
        content: "";
        position: absolute;
        width: 135px;
        height: 135px;
        border-radius: 30px;
        border: 18px solid rgba(17, 17, 17, 0.07);
        right: -45px;
        bottom: -35px;
        transform: rotate(18deg);
    }

    .mobile-logo[b-czxfhay94a] {
        position: relative;
        z-index: 2;
        font-size: 34px;
        font-weight: 900;
        letter-spacing: -1.4px;
        line-height: 1;
        margin-bottom: 18px;
    }

    .mobile-title[b-czxfhay94a] {
        position: relative;
        z-index: 2;
        font-size: 22px;
        font-weight: 900;
        margin-bottom: 8px;
    }

    .mobile-subtitle[b-czxfhay94a] {
        position: relative;
        z-index: 2;
        max-width: 310px;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.8;
    }

    .login-section[b-czxfhay94a] {
        min-height: calc(100vh - 250px);
        padding: 0 22px 28px;
        align-items: flex-start;
    }

    .login-box[b-czxfhay94a] {
        max-width: 360px;
        margin: -48px auto 0;
        background: #ffffff;
        border-radius: 26px;
        padding: 24px 20px 22px;
        box-shadow: 0 18px 48px rgba(17, 17, 17, 0.12);
        border: 1px solid rgba(17, 17, 17, 0.04);
        position: relative;
        z-index: 5;
    }

    .mini-logo[b-czxfhay94a] { display: none; }

    h1[b-czxfhay94a] { font-size: 24px; }
    .subtitle[b-czxfhay94a] { font-size: 12.8px; margin-bottom: 20px; }
    input[b-czxfhay94a] { height: 48px; }
    .login-btn[b-czxfhay94a] { height: 50px; }
}

@media (max-width: 420px) {
    .mobile-top[b-czxfhay94a] { min-height: 245px; padding: 28px 22px; }
    .mobile-logo[b-czxfhay94a] { font-size: 32px; }
    .mobile-title[b-czxfhay94a] { font-size: 21px; }
    .mobile-subtitle[b-czxfhay94a] { font-size: 13.5px; }

    .login-section[b-czxfhay94a] { min-height: calc(100vh - 245px); padding: 0 18px 24px; }

    .login-box[b-czxfhay94a] { max-width: 100%; margin-top: -46px; padding: 22px 18px 20px; border-radius: 24px; }

    .options[b-czxfhay94a] { align-items: flex-start; flex-direction: column; gap: 9px; }
}
