@charset "UTF-8";

/* Acceso y portada pública: misma identidad visual, sin dependencias externas. */

body.login-page,
body.public-page {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 5%, rgba(21, 91, 194, .17), transparent 30rem),
        radial-gradient(circle at 92% 0%, rgba(217, 155, 0, .16), transparent 28rem),
        linear-gradient(145deg, #eef3fa 0%, #f8faff 48%, #edf3fb 100%);
}

body.login-page::before,
body.public-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .34;
    background-image:
        linear-gradient(rgba(18, 60, 124, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 60, 124, .055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

body.login-page {
    display: grid;
    place-items: center;
    padding: clamp(14px, 3vw, 34px);
}

.login-shell {
    width: min(1040px, 100%);
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    overflow: hidden;
    border: 1px solid rgba(202, 214, 230, .92);
    border-radius: 30px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 36px 90px rgba(6, 26, 66, .16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.login-story {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: clamp(34px, 5vw, 64px);
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 8%, rgba(14, 165, 233, .38), transparent 19rem),
        radial-gradient(circle at 22% 72%, rgba(56, 189, 248, .10), transparent 16rem),
        radial-gradient(circle at 10% 100%, rgba(217, 155, 0, .28), transparent 21rem),
        linear-gradient(145deg, #03132f, #061a42 45%, #123c7c);
}

.login-story > :not(.story-atmosphere) {
    position: relative;
    z-index: 1;
}

.story-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.story-orbit {
    position: absolute;
    display: block;
    border: 1px solid rgba(125, 211, 252, .15);
    border-radius: 999px;
}

.story-orbit-one {
    width: 210px;
    height: 210px;
    top: 12%;
    right: -76px;
    box-shadow:
        0 0 0 32px rgba(56, 189, 248, .025),
        0 0 70px rgba(14, 165, 233, .10);
    animation: story-orbit-drift 12s ease-in-out infinite alternate;
}

.story-orbit-two {
    width: 118px;
    height: 118px;
    left: -42px;
    bottom: 16%;
    border-color: rgba(251, 191, 36, .14);
    animation: story-orbit-drift 10s ease-in-out -4s infinite alternate-reverse;
}

.story-spark {
    position: absolute;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #7dd3fc;
    box-shadow: 0 0 0 5px rgba(125, 211, 252, .08), 0 0 20px rgba(125, 211, 252, .42);
    animation: story-spark-pulse 4.8s ease-in-out infinite;
}

.story-spark-one {
    top: 17%;
    right: 24%;
}

.story-spark-two {
    right: 11%;
    bottom: 28%;
    animation-delay: -1.6s;
}

.story-spark-three {
    left: 9%;
    bottom: 10%;
    background: #f8c84c;
    box-shadow: 0 0 0 5px rgba(248, 200, 76, .08), 0 0 20px rgba(248, 200, 76, .34);
    animation-delay: -3.2s;
}

.login-story::before,
.login-story::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 36px;
    transform: rotate(18deg);
}

.login-story::before {
    width: 240px;
    height: 240px;
    right: -86px;
    top: 155px;
    box-shadow: 34px 34px 0 -1px rgba(255, 255, 255, .035);
}

.login-story::after {
    width: 150px;
    height: 150px;
    left: -72px;
    bottom: 70px;
}

.story-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    animation: story-enter .72s cubic-bezier(.2, .8, .2, 1) both;
}

.story-brand img {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .24);
    animation: story-logo-breathe 5.5s ease-in-out 1.2s infinite;
}

.story-brand strong,
.story-brand span {
    display: block;
}

.story-brand strong {
    font-size: 21px;
    letter-spacing: .06em;
}

.story-brand span {
    margin-top: 3px;
    color: rgba(255, 255, 255, .67);
    font-size: 12px;
}

.story-copy {
    max-width: 500px;
    margin: clamp(38px, 6.5vh, 68px) 0 32px;
}

.story-welcome {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    max-width: 100%;
    padding: 8px 13px 8px 10px;
    border: 1px solid rgba(125, 211, 252, .20);
    border-radius: 999px;
    background: linear-gradient(115deg, rgba(255, 255, 255, .11), rgba(56, 189, 248, .055));
    color: rgba(255, 255, 255, .84);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .015em;
    animation: story-enter .72s cubic-bezier(.2, .8, .2, 1) .08s both;
}

.story-wave {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(248, 200, 76, .14);
    font-size: 14px;
    line-height: 1;
    transform-origin: 70% 72%;
    animation: story-wave 2.8s ease-in-out 1s infinite;
}

.story-kicker,
.login-kicker,
.public-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.story-kicker {
    margin-top: 17px;
    border: 1px solid rgba(248, 200, 76, .24);
    background: rgba(248, 200, 76, .10);
    color: #ffe29a;
    animation: story-enter .72s cubic-bezier(.2, .8, .2, 1) .16s both;
}

.story-kicker::before,
.login-kicker::before,
.public-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 14%, transparent);
}

.story-copy h2 {
    max-width: 470px;
    margin: 18px 0 14px;
    font-size: clamp(38px, 4.6vw, 54px);
    line-height: 1.02;
    letter-spacing: -.04em;
    text-wrap: balance;
    animation: story-enter .78s cubic-bezier(.2, .8, .2, 1) .24s both;
}

.story-title-brand {
    color: #ffe29a;
    text-shadow: 0 0 34px rgba(248, 200, 76, .18);
}

.story-moving-line {
    display: inline-flex;
    align-items: baseline;
    width: 100%;
    margin-top: .16em;
    color: rgba(255, 255, 255, .96);
    font-size: .78em;
    letter-spacing: -.025em;
    white-space: nowrap;
}

.story-word-window {
    --story-word-step: 1.06em;
    position: relative;
    display: inline-block;
    min-width: 9.3em;
    height: var(--story-word-step);
    overflow: hidden;
    color: #7dd3fc;
    text-shadow: 0 0 32px rgba(56, 189, 248, .30);
    vertical-align: bottom;
}

.story-word-window::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: .03em;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f8c84c, #38bdf8 70%, transparent);
    opacity: .72;
    transform-origin: left;
    animation: story-underline 2.4s ease-in-out infinite;
}

.story-word-track {
    display: flex;
    flex-direction: column;
    animation: story-words 10s cubic-bezier(.76, 0, .24, 1) infinite;
    will-change: transform;
}

.story-word-track > span {
    height: var(--story-word-step);
    flex: 0 0 var(--story-word-step);
    line-height: var(--story-word-step);
}

.story-copy p {
    max-width: 470px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.7;
    animation: story-enter .78s cubic-bezier(.2, .8, .2, 1) .34s both;
}

.story-day-card {
    position: relative;
    isolation: isolate;
    max-width: 470px;
    min-width: 0;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: stretch;
    gap: 13px;
    margin-top: 25px;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(125, 211, 252, .23);
    border-radius: 19px;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .105), rgba(56, 189, 248, .045)),
        rgba(5, 28, 69, .34);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .16), inset 0 1px rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .24s ease, border-color .24s ease, background-color .24s ease;
    animation: story-enter .78s cubic-bezier(.2, .8, .2, 1) .44s both;
}

.story-day-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 150px;
    height: 150px;
    right: -72px;
    bottom: -96px;
    border-radius: 50%;
    background: rgba(56, 189, 248, .13);
    filter: blur(3px);
}

.story-day-card:hover {
    transform: translateY(-3px);
    border-color: rgba(125, 211, 252, .40);
    background-color: rgba(9, 41, 92, .54);
}

.story-day-calendar {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 94px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    color: #09295d;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    text-align: center;
}

.story-day-calendar > span {
    display: block;
    padding: 5px 4px;
    background: linear-gradient(135deg, #f9cc5a, #e9a912);
    color: #102b58;
    font-size: 9px;
    font-weight: 1000;
    letter-spacing: .07em;
    line-height: 1.1;
}

.story-day-calendar strong {
    align-self: center;
    padding: 3px 4px 0;
    font-size: 34px;
    font-weight: 1000;
    letter-spacing: -.07em;
    line-height: .9;
}

.story-day-calendar small {
    display: block;
    padding: 3px 4px 7px;
    color: #52709c;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 1;
}

.story-day-copy {
    min-width: 0;
    align-self: center;
}

.story-day-label {
    display: block;
    margin-bottom: 5px;
    color: #a9e5ff;
    font-size: 9px;
    font-weight: 1000;
    letter-spacing: .09em;
    line-height: 1.1;
}

.story-day-copy strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.16;
}

.story-day-copy p {
    margin-top: 5px;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    line-height: 1.42;
}

.story-day-star {
    position: absolute;
    top: 9px;
    right: 11px;
    color: rgba(248, 200, 76, .88);
    font-size: 13px;
    line-height: 1;
    animation: story-day-twinkle 3.2s ease-in-out infinite;
}

.story-day-card[data-day-tone="saturday"] {
    border-color: rgba(248, 200, 76, .45);
    background:
        linear-gradient(125deg, rgba(248, 200, 76, .17), rgba(255, 255, 255, .055) 48%, rgba(56, 189, 248, .09)),
        rgba(8, 34, 77, .52);
}

.story-day-card[data-day-tone="saturday"] .story-day-calendar > span {
    background: linear-gradient(135deg, #ffe49c, #f3bd2f);
}

.story-day-card[data-day-tone="saturday"] .story-day-label {
    color: #ffe29a;
}

.story-day-card[data-day-tone="sunday"] .story-day-calendar > span {
    background: linear-gradient(135deg, #bfeaff, #72c9f4);
}

.story-day-card[data-day-tone="sunday"] .story-day-label {
    color: #bfeaff;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
    animation: story-enter .78s cubic-bezier(.2, .8, .2, 1) .44s both;
}

.story-feature {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 17px;
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .24s ease, border-color .24s ease, background-color .24s ease;
}

.story-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(125, 211, 252, .24);
    background: rgba(255, 255, 255, .085);
}

.story-feature > div {
    min-width: 0;
}

.story-feature .story-feature-icon {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    flex: 0 0 29px;
    margin: 0;
    border: 1px solid rgba(125, 211, 252, .20);
    border-radius: 10px;
    background: rgba(56, 189, 248, .10);
    color: #a5e3ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.story-feature strong,
.story-feature > div > span {
    display: block;
}

.story-feature strong {
    font-size: 13px;
}

.story-feature > div > span {
    margin-top: 5px;
    color: rgba(255, 255, 255, .60);
    font-size: 11px;
    line-height: 1.45;
}

.story-foot {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .56);
    font-size: 12px;
    animation: story-enter .72s cubic-bezier(.2, .8, .2, 1) .52s both;
}

.story-foot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 5px rgba(74, 222, 128, .11);
    animation: story-status 2.8s ease-in-out infinite;
}

@keyframes story-enter {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes story-wave {
    0%, 52%, 100% { transform: rotate(0deg); }
    8% { transform: rotate(16deg); }
    16% { transform: rotate(-9deg); }
    24% { transform: rotate(14deg); }
    32% { transform: rotate(-6deg); }
    40% { transform: rotate(8deg); }
}

@keyframes story-words {
    0%, 16% { transform: translateY(0); }
    21%, 37% { transform: translateY(calc(var(--story-word-step) * -1)); }
    42%, 58% { transform: translateY(calc(var(--story-word-step) * -2)); }
    63%, 79% { transform: translateY(calc(var(--story-word-step) * -3)); }
    84%, 100% { transform: translateY(calc(var(--story-word-step) * -4)); }
}

@keyframes story-underline {
    0%, 100% { transform: scaleX(.28); opacity: .48; }
    50% { transform: scaleX(1); opacity: .92; }
}

@keyframes story-logo-breathe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes story-orbit-drift {
    from { transform: translate3d(0, -5px, 0) rotate(0deg); }
    to { transform: translate3d(-18px, 12px, 0) rotate(12deg); }
}

@keyframes story-spark-pulse {
    0%, 100% { opacity: .28; transform: scale(.8); }
    50% { opacity: .9; transform: scale(1.15); }
}

@keyframes story-status {
    0%, 100% { opacity: .72; transform: scale(.92); }
    50% { opacity: 1; transform: scale(1.12); }
}

@keyframes story-day-twinkle {
    0%, 100% { opacity: .42; transform: rotate(0deg) scale(.82); }
    50% { opacity: 1; transform: rotate(18deg) scale(1.14); }
}

.login-card {
    width: auto;
    padding: clamp(34px, 5vw, 58px);
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, .98);
    box-shadow: none;
}

.login-logo-wide {
    width: min(270px, 100%);
    max-height: 98px;
    margin: 0 0 36px;
    border-radius: 0;
    background: transparent;
    object-position: left center;
}

.login-heading {
    margin-bottom: 26px;
}

.login-kicker,
.public-kicker {
    border: 1px solid rgba(21, 91, 194, .13);
    background: rgba(21, 91, 194, .07);
    color: #155bc2;
}

.login-heading h1 {
    margin: 14px 0 8px;
    color: #061a42;
    font-size: clamp(30px, 4vw, 39px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.login-heading p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
}

.login-card .alert {
    display: none;
    margin-bottom: 18px;
    padding: 13px 14px;
    border: 1px solid rgba(220, 38, 38, .14);
    border-radius: 14px;
    background: #fff1f2;
    color: #9f1239;
}

.login-card label {
    margin-bottom: 8px;
    color: #0b244d;
    font-size: 13px;
    letter-spacing: .01em;
}

.login-card input:not([type="hidden"]) {
    min-height: 50px;
    margin-bottom: 17px;
    padding: 0 15px;
    border-color: #d6dfec;
    border-radius: 14px;
    background: #fbfcff;
    color: #172033;
}

.login-card input:not([type="hidden"]):hover {
    border-color: #b7c7dc;
}

.login-card input:not([type="hidden"]):focus {
    border-color: #0ea5e9;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, .12);
}

.password-field {
    position: relative;
}

.password-field input {
    padding-right: 88px !important;
}

.password-toggle {
    position: absolute;
    right: 8px;
    top: 7px;
    width: auto;
    min-width: 70px;
    height: 36px;
    padding: 0 10px;
    border: 0;
    border-radius: 10px;
    background: #edf4ff;
    color: #123c7c;
    box-shadow: none;
    font-size: 12px;
    font-weight: 900;
}

.login-card form > button[type="submit"] {
    min-height: 51px;
    margin-top: 4px;
    border-radius: 15px;
    background: linear-gradient(135deg, #123c7c, #1d70e2);
    box-shadow: 0 14px 30px rgba(18, 60, 124, .23);
}

.login-card .install-button {
    min-height: 48px;
    margin-top: 11px;
    border: 1px solid rgba(21, 91, 194, .08);
    background: #eef6ff;
    color: #123c7c;
}

.login-help {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 19px 0 0;
    color: #718096;
    font-size: 11px;
    line-height: 1.5;
}

.login-help::before {
    content: "i";
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eef2f7;
    color: #123c7c;
    font-weight: 900;
}

/* Portada pública. */
body.public-page {
    display: grid;
    place-items: center;
    padding: clamp(14px, 3vw, 34px);
}

body.public-page .public-home {
    position: relative;
    isolation: isolate;
    width: min(820px, 100%);
    overflow: hidden;
    border-color: rgba(205, 216, 231, .90);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 32px 80px rgba(6, 26, 66, .15);
    backdrop-filter: blur(18px);
}

body.public-page .public-home::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;
    height: 180px;
    background:
        radial-gradient(circle at 85% 0%, rgba(14, 165, 233, .22), transparent 17rem),
        linear-gradient(135deg, rgba(3, 19, 47, .98), rgba(18, 60, 124, .95));
}

body.public-page .logo {
    width: min(330px, 78%);
    max-height: 120px;
    margin-bottom: 26px;
    padding: 12px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 38px rgba(3, 19, 47, .16);
}

body.public-page .seal {
    margin-top: 2px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: linear-gradient(135deg, #123c7c, #1d70e2);
}

body.public-page h1 {
    letter-spacing: -.035em;
    text-wrap: balance;
}

.public-kicker {
    margin: 0 auto 14px;
}

.public-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 26px auto 0;
}

.public-trust div {
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
    text-align: center;
}

.public-trust strong,
.public-trust span {
    display: block;
}

.public-trust strong {
    color: #123c7c;
    font-size: 13px;
}

.public-trust span {
    margin-top: 5px;
    color: #718096;
    font-size: 11px;
    line-height: 1.4;
}

@media screen and (max-width: 860px) {
    body.login-page {
        align-items: start;
    }

    .login-shell {
        min-height: 0;
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .login-story {
        min-height: auto;
        padding: 28px;
    }

    .story-copy {
        margin: 34px 0 0;
    }

    .story-copy h2 {
        max-width: 620px;
        font-size: clamp(32px, 8vw, 46px);
    }

    .story-copy p {
        max-width: 620px;
    }

    .story-features,
    .story-foot {
        display: none;
    }

    .story-day-card {
        max-width: 620px;
        margin-top: 22px;
    }

    .login-card {
        padding: 34px 28px;
    }

    .login-logo-wide {
        display: none;
    }
}

@media screen and (max-width: 520px) {
    body.login-page,
    body.public-page {
        padding: 10px;
    }

    .login-shell {
        border-radius: 20px;
    }

    .login-story {
        padding: 23px 20px;
    }

    .story-brand img {
        width: 45px;
        height: 45px;
        border-radius: 14px;
    }

    .story-copy {
        margin-top: 22px;
    }

    .story-welcome {
        padding: 7px 11px 7px 8px;
    }

    .story-kicker {
        margin-top: 12px;
    }

    .story-copy h2 {
        margin: 12px 0 10px;
        font-size: 32px;
    }

    .story-copy p {
        font-size: 14px;
        line-height: 1.55;
    }

    .story-day-card {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 10px;
        margin-top: 18px;
        padding: 10px;
        border-radius: 16px;
    }

    .story-day-calendar {
        min-height: 80px;
        border-radius: 12px;
    }

    .story-day-calendar > span {
        padding: 4px 3px;
        font-size: 8px;
    }

    .story-day-calendar strong {
        font-size: 29px;
    }

    .story-day-calendar small {
        padding-bottom: 6px;
        font-size: 7px;
    }

    .story-day-copy strong {
        font-size: 14px;
    }

    .story-day-copy p {
        margin-top: 4px;
        font-size: 10px;
        line-height: 1.36;
    }

    .login-card {
        padding: 28px 20px 24px;
    }

    .login-heading h1 {
        font-size: 31px;
    }

    body.public-page .public-home {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .public-trust {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.login-page::before,
    body.public-page::before {
        display: none;
    }

    .story-atmosphere {
        display: none;
    }

    .login-story *,
    .login-story::before,
    .login-story::after,
    .login-story *::before,
    .login-story *::after {
        animation: none !important;
        transition: none !important;
    }

    .story-word-track {
        transform: translateY(0) !important;
        will-change: auto;
    }
}
