﻿/*
IMPORTANT:
Font is 100% local. No Google Fonts / internet request.
Expected files:
/wwwroot/fonts/Vazirmatn-Regular.woff2
/wwwroot/fonts/Vazirmatn-Medium.woff2
/wwwroot/fonts/Vazirmatn-Bold.woff2
*/
@font-face {
    font-family: "Vazirmatn";
    src: url("/fonts/Vazirmatn-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("/fonts/Vazirmatn-Medium.woff2") format("woff2");
    font-weight: 500 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("/fonts/Vazirmatn-Bold.woff2") format("woff2");
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Vazirmatn", Tahoma, sans-serif;
    background: #EDF0EC;
    color: #16201A;
}

button,
input {
    font-family: inherit;
}

a {
    color: #0F7A3C;
    text-decoration: none;
}

    a:hover {
        color: #0A5A2C;
    }

input:focus {
    outline: none;
}

::placeholder {
    color: #AAB5AD;
    opacity: 1;
}
/* =========================
   PAGE
========================= */
.login-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 40px;
    overflow: hidden;
    background: #EDF0EC;
}

.login-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.login-bg-top {
    top: -18%;
    right: -8%;
    width: 780px;
    height: 780px;
    background: radial-gradient(circle at 50% 50%, rgba(15, 122, 60, .13), rgba(15, 122, 60, 0) 62%);
}

.login-bg-bottom {
    bottom: -24%;
    left: -12%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle at 50% 50%, rgba(15, 122, 60, .09), rgba(15, 122, 60, 0) 62%);
}
/* =========================
   CONTENT WRAPPER
========================= */
.login-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1140px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* =========================
   MAIN CARD
========================= */
.login-shell {
    position: relative;
    width: 100%;
    max-width: 1140px;
    min-height: 680px;
    background: #FFFFFF;
    border-radius: 28px;
    padding: 16px;
    box-shadow: 0 46px 100px -54px rgba(6, 48, 26, .55), 0 2px 8px rgba(16, 32, 22, .04);
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 16px;
    direction: rtl;
    animation: rise .5s ease both;
}
/* =========================
   FORM PANEL - RIGHT
========================= */
.login-form-panel {
    padding: 46px 46px 30px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    direction: rtl;
}

.top-logo {
    height: 48px;
    width: auto;
    max-width: 150px;
    align-self: flex-start;
    object-fit: contain;
}

.login-heading {
    margin-top: 40px;
}

    .login-heading h1 {
        margin: 0;
        font-size: 27px;
        font-weight: 800;
        letter-spacing: -.7px;
        line-height: 1.5;
    }

    .login-heading p {
        margin: 10px 0 0;
        font-size: 13px;
        font-weight: 400;
        color: #6E7C73;
        line-height: 2;
    }

.login-form {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.identity-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 158px);
    gap: 12px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

    .field > label {
        font-size: 12px;
        font-weight: 600;
        color: #45524A;
    }

    .field > input,
    .password-box > input {
        width: 100%;
        min-width: 0;
        height: 52px;
        border: 1px solid #DEE5E0;
        border-radius: 14px;
        background: #FAFBFA;
        padding: 0 16px;
        color: #16201A;
        font-size: 14px;
        transition: border-color .18s, box-shadow .18s, background .18s;
    }

        .field > input:focus,
        .password-box > input:focus {
            border-color: #0F7A3C;
            box-shadow: 0 0 0 4px rgba(15, 122, 60, .10);
            background: #FFFFFF;
        }
/* Username placeholder/value follows the original RTL visual */
#Username {
    direction: ltr;
    text-align: right;
    font-variant-numeric: tabular-nums;
}
/* =========================
   CUSTOMER CODE
========================= */
.customer-code-box {
    display: flex;
    align-items: center;
    height: 52px;
    min-width: 0;
    border: 1px solid #DEE5E0;
    border-radius: 14px;
    background: #FAFBFA;
    overflow: hidden;
    transition: border-color .18s, box-shadow .18s, background .18s;
}

    .customer-code-box:focus-within {
        border-color: #0F7A3C;
        box-shadow: 0 0 0 4px rgba(15, 122, 60, .10);
        background: #FFFFFF;
    }

    .customer-code-box input {
        flex: 1;
        min-width: 0;
        height: 100%;
        border: 0;
        outline: 0;
        background: transparent;
        padding: 0 12px;
        color: #16201A;
        font-size: 14px;
        font-variant-numeric: tabular-nums;
        direction: ltr;
        text-align: left;
    }

.customer-code-prefix {
    flex: 0 0 auto;
    align-self: stretch;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border-left: 1px solid #E4EAE5;
    background: #F0F4F1;
    color: #45524A;
    font-family: Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    direction: ltr;
}
/* =========================
   PASSWORD
========================= */
.password-box {
    position: relative;
    display: flex;
    align-items: center;
}

    .password-box input {
        padding-left: 78px;
        letter-spacing: 1.5px;
    }

.password-toggle {
    position: absolute;
    left: 14px;
    border: 0;
    background: transparent;
    color: #8C988F;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 700;
}

    .password-toggle:hover {
        color: #0F7A3C;
        background: #F0F5F1;
    }
/* =========================
   VALIDATION / ERROR
========================= */
.field-error {
    display: none;
    color: #C62828;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.7;
}

    .field-error:not(:empty) {
        display: block;
    }
/* Stronger error border requested */
.field.has-error > input,
.field.has-error .password-box > input {
    border: 2px solid #C62828;
    background: #FFF9F8;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, .08);
}

.field.has-error .customer-code-box {
    border: 2px solid #C62828;
    background: #FFF9F8;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, .08);
}

.field.has-error > label {
    color: #9F1F18;
    font-weight: 700;
}

.login-message {
    display: none;
    padding: 11px 13px;
    border: 2px solid #C62828;
    border-radius: 11px;
    background: #FFF5F4;
    color: #A61B14;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.8;
}

    .login-message.is-visible {
        display: block;
    }
/* =========================
   OPTIONS / BUTTON
========================= */
.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    color: #45524A;
    font-size: 12.5px;
}

    .remember input {
        width: 16px;
        height: 16px;
        accent-color: #0F7A3C;
        cursor: pointer;
    }

.forgot-password {
    font-size: 12.5px;
    font-weight: 600;
}

.login-button {
    position: relative;
    margin-top: 14px;
    height: 54px;
    min-width: 0;
    border: 0;
    border-radius: 14px;
    background: #0F7A3C;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 30px -16px rgba(15, 122, 60, .85);
    transition: background .18s, transform .18s, opacity .18s;
}

    .login-button:hover:not(:disabled) {
        background: #0A5A2C;
        transform: translateY(-1px);
    }

    .login-button:active:not(:disabled) {
        transform: translateY(0);
    }

    .login-button:disabled {
        opacity: .72;
        cursor: default;
    }

.login-button-loading {
    display: none;
    width: 18px;
    height: 18px;
    margin: auto;
    border: 2px solid rgba(255, 255, 255, .42);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: login-spin .7s linear infinite;
}

.login-button.is-loading .login-button-text {
    display: none;
}

.login-button.is-loading .login-button-loading {
    display: block;
}
/* =========================
   FOOTER
========================= */
.form-spacer {
    flex: 1;
    min-height: 22px;
}

.login-footer {
    padding-top: 18px;
    border-top: 1px solid #EEF1EF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #98A49B;
    font-size: 11.5px;
}

.version-number {
    font-variant-numeric: tabular-nums;
}

.copyright {
    margin-top: 8px;
    color: #A8B2AA;
    font-size: 11px;
}

    .copyright a {
        color: #6E7C73;
        font-weight: 600;
    }

        .copyright a:hover {
            color: #0F7A3C;
        }
/* =========================
   BRAND PANEL - LEFT
========================= */
.login-visual {
    position: relative;
    overflow: hidden;
    min-height: 648px;
    border-radius: 20px;
    background: linear-gradient(160deg, #0B4F2B 0%, #0F7A3C 62%, #14894C 100%);
    direction: rtl;
}

.visual-lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(112deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 16px);
}

.visual-aurora {
    position: absolute;
    inset: -30%;
    background: radial-gradient(closest-side, rgba(255, 255, 255, .20), rgba(255, 255, 255, 0) 70%);
    animation: aurora 16s ease-in-out infinite alternate;
}

.brand-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-ring {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    border-width: 1px;
    animation: pulse 7s ease-in-out infinite;
}

.ring-1 {
    width: 420px;
    height: 420px;
    border-color: rgba(255, 255, 255, .16);
}

.ring-2 {
    width: 560px;
    height: 560px;
    border-color: rgba(255, 255, 255, .10);
    animation-delay: .9s;
}

.ring-3 {
    width: 700px;
    height: 700px;
    border-color: rgba(255, 255, 255, .06);
    animation-delay: 1.8s;
}

.hero-logo {
    position: relative;
    z-index: 2;
    width: 62%;
    height: auto;
    object-fit: contain;
    /*
  Same original green logo is reused here.
  Filter turns it white exactly like the source design.
  */
    filter: brightness(0) invert(1) drop-shadow(0 18px 40px rgba(0, 0, 0, .25));
    opacity: .95;
    animation: float 9s ease-in-out infinite;
}

.slider-dots {
    position: absolute;
    z-index: 7;
    bottom: 18px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.slider-dot {
    display: block;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .55);
}

.slider-dot-small {
    width: 6px;
}

.slider-dot-active {
    width: 20px;
    background: #FFFFFF;
}
/* =========================
   ANIMATIONS
========================= */
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(-10px) scale(1);
    }

    50% {
        transform: translateY(10px) scale(1.02);
    }
}

@keyframes pulse {
    0% {
        transform: scale(.86);
        opacity: .12;
    }

    50% {
        transform: scale(1);
        opacity: .5;
    }

    100% {
        transform: scale(.86);
        opacity: .12;
    }
}

@keyframes aurora {
    0% {
        transform: translate3d(-8%, -6%, 0) scale(1);
    }

    100% {
        transform: translate3d(10%, 8%, 0) scale(1.15);
    }
}

@keyframes login-spin {
    to {
        transform: rotate(360deg);
    }
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 850px) {
    .login-page {
        padding: 24px 16px;
    }

    .login-shell {
        max-width: 560px;
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .login-visual {
        display: none;
    }

    .login-form-panel {
        padding: 32px 26px 24px;
    }
}

@media (max-width: 520px) {
    .identity-grid {
        grid-template-columns: 1fr;
    }

    .login-heading h1 {
        font-size: 23px;
    }

    .login-options {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }
}
/* =========================================================
   LOGIN BRAND -> ANNOUNCEMENT SLIDER
========================================================= */
.login-visual-slider {
    position: relative;
    overflow: hidden;
    background: #0F7A3C;
}

.login-visual-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform .72s cubic-bezier(.22, .78, .25, 1), opacity .55s ease;
}

.login-brand-slide {
    z-index: 2;
    transform: translateX(0);
    opacity: 1;
}

.login-announcement-slide {
    z-index: 3;
    transform: translateX(100%);
    opacity: 1;
    background: #0F7A3C;
}
/*
The second slide is activated by JS exactly one second after the
announcement image has successfully loaded.
*/
.login-visual-slider.is-announcement-active .login-brand-slide {
    transform: translateX(-100%);
}

.login-visual-slider.is-announcement-active .login-announcement-slide {
    transform: translateX(0);
}

.login-announcement-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}
/*
Slider indicator behavior:
- when no image exists: indicator is not rendered at all
- when an image exists: it remains hidden until image load succeeds
*/
.login-slider-dots {
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease;
}

.login-visual-slider.is-announcement-ready .login-slider-dots {
    opacity: 1;
    visibility: visible;
}

.login-slider-dots .slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
    transition: width .25s ease, background .25s ease;
}

    .login-slider-dots .slider-dot.is-active {
        width: 20px;
        background: #FFFFFF;
    }
/*
If the image endpoint unexpectedly fails after the page has rendered,
JS keeps the Pouya slide visible and hides all slider UI.
*/
.login-visual-slider.announcement-load-failed .login-announcement-slide,
.login-visual-slider.announcement-load-failed .login-slider-dots {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .login-visual-slide {
        transition: opacity .25s ease;
    }

    .login-brand-slide {
        transform: none !important;
    }

    .login-announcement-slide {
        transform: none !important;
        opacity: 0;
    }

    .login-visual-slider.is-announcement-active .login-brand-slide {
        opacity: 0;
    }

    .login-visual-slider.is-announcement-active .login-announcement-slide {
        opacity: 1;
    }
}
/* =========================================================
   ANNOUNCEMENT CTA - FIXED GLASS STRIP
   Only the bottom strip is clickable. The poster itself is not a link.
   Glass look: the strip sits ON TOP of the poster so backdrop-filter
   has real content to blur. Hover = darker tint, glass preserved.
========================================================= */
.login-announcement-media {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0; /* قبلاً 44px بود؛ حالا نوار شیشه‌ای روی پوستر می‌نشیند */
    overflow: hidden;
    border-radius: 20px;
    background: #08160D;
}

    .login-announcement-media .login-announcement-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-position: center top;
        background: #08160D;
        transition: filter .25s ease;
    }

.login-announcement-cta {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 6;
    min-height: 44px;
    padding: 9px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    border-top: 1px solid rgba(255, 255, 255, .30);
    border-radius: 0 0 20px 20px;
    background: rgba(9, 88, 42, .34);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 -10px 28px -14px rgba(0, 0, 0, .45);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .login-announcement-cta:hover,
    .login-announcement-cta:focus-visible {
        color: #FFFFFF;
        /* فقط تُن تیره‌تر؛ بلور/حالت شیشه‌ای حفظ می‌شود */
        background: rgba(3, 32, 16, .62);
        border-top-color: rgba(255, 255, 255, .46);
        backdrop-filter: blur(18px) saturate(150%);
        -webkit-backdrop-filter: blur(18px) saturate(150%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .20), 0 -12px 30px -14px rgba(0, 0, 0, .55);
    }

    .login-announcement-cta:focus-visible {
        outline: 3px solid rgba(255, 255, 255, .82);
        outline-offset: -3px;
    }

.login-announcement-cta-text {
    font-size: 12.8px;
    font-weight: 800;
    line-height: 1.6;
}

.login-announcement-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: transform .22s ease;
}

.login-announcement-cta:hover .login-announcement-cta-arrow,
.login-announcement-cta:focus-visible .login-announcement-cta-arrow {
    transform: translateX(-4px);
}
/* Keep slider dots above the glass CTA instead of underneath it. */
.login-slider-dots {
    bottom: 58px;
    z-index: 7;
}

@media (hover: none) {
    .login-announcement-cta {
        background: rgba(9, 88, 42, .40);
    }
}

@media (max-width: 850px) {
    .login-announcement-media {
        bottom: 0; /* قبلاً 42px */
    }

    .login-announcement-cta {
        min-height: 42px;
        padding: 8px 14px;
    }

    .login-slider-dots {
        bottom: 54px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .login-announcement-media .login-announcement-image,
    .login-announcement-cta,
    .login-announcement-cta-arrow {
        transition: none;
    }
}
/* =========================================================
   LOGIN SUCCESS MESSAGE
========================================================= */
.login-success-message {
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid #BFE3CC;
    border-radius: 13px;
    background: #EFF9F2;
    color: #0A5A2C;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11.5px;
    font-weight: 650;
    line-height: 1.8;
}

.login-success-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 8px;
    background: #0F7A3C;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}
/* =========================================================
   FIRST LOGIN GUIDE - NOTICE BOX
   (اعلان بالای کارت ورود - فقط ظاهر، بدون تغییر منطق)
   Same dimensions as before (padding/radius unchanged).
   - prettier skin: refined gradient, soft glow, thin accent bar
   - red dot blinks in sync with its pulse ring
   - title & paragraphs blink softly to draw attention
========================================================= */
.first-login-guide {
    position: relative;
    width: 100%;
    padding: 12px 22px; /* بدون تغییر */
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid rgba(211, 47, 47, .30);
    border-radius: 16px; /* بدون تغییر */
    background: linear-gradient(180deg, #FFF5F5 0%, #FFFCFC 55%, #FFF3F3 100%);
    box-shadow: 0 16px 34px -22px rgba(198, 40, 40, .48), 0 2px 6px rgba(16, 32, 22, .05), inset 0 1px 0 rgba(255, 255, 255, .9);
    color: #C62828;
    direction: rtl;
    text-align: right;
    overflow: hidden;
    animation: rise .5s ease both;
}
    /* هالهٔ نور تزئینی در گوشه - فقط ظاهر، بدون تغییر ابعاد */
    .first-login-guide::before {
        content: "";
        position: absolute;
        top: -46px;
        right: -46px;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: radial-gradient(closest-side, rgba(211, 47, 47, .12), rgba(211, 47, 47, 0));
        pointer-events: none;
    }
    /* نوار اکنت باریک سمت راست - فقط ظاهر */
    .first-login-guide::after {
        content: "";
        position: absolute;
        top: 12px;
        bottom: 12px;
        right: 9px;
        width: 3px;
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(229, 115, 115, .9), rgba(183, 28, 28, .9));
        opacity: .5;
        pointer-events: none;
    }

.first-login-guide-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.first-login-guide-title {
    position: relative;
    padding-right: 24px;
    display: block;
    margin-bottom: 3px;
    color: #B71C1C;
    font-size: 13.5px;
    font-weight: 900;
    line-height: 1.9;
    animation: guideSoftBlink 3.2s ease-in-out infinite; /* چشمک نرم عنوان */
}

.first-login-guide-body p {
    margin: 0;
    color: #C62828;
    font-size: 12px;
    font-weight: 700;
    line-height: 2;
    animation: guideSoftBlink 3.2s ease-in-out infinite; /* چشمک نرم متن‌ها */
    animation-delay: .2s;
}
/* نقطهٔ قرمز: خود نقطه هم هماهنگ با حلقهٔ پالس چشمک می‌زند */
.first-login-guide-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D32F2F;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .88);
    transform: translateY(-50%);
    animation: guideDotBlink 1.7s ease-in-out infinite;
}
/* حلقهٔ پالس قبلی دست‌نخورده حفظ شده است */
.first-login-guide-title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(211, 47, 47, .22);
    transform: translateY(-50%);
    animation: guidePulseDot 1.7s ease-out infinite;
}

@keyframes guideDotBlink {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: .3;
        transform: translateY(-50%) scale(.8);
    }
}

@keyframes guidePulseDot {
    0% {
        transform: translateY(-50%) scale(.72);
        opacity: .85;
    }

    70% {
        transform: translateY(-50%) scale(1.35);
        opacity: 0;
    }

    100% {
        transform: translateY(-50%) scale(1.35);
        opacity: 0;
    }
}
/* چشمک نرم متن: فقط افت ملایم opacity، بدون پرش سخت */
@keyframes guideSoftBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .74;
    }
}

@media (max-width: 850px) {
    .first-login-guide-body p {
        font-size: 11.5px;
    }
}

@media (max-width: 520px) {
    .first-login-guide {
        padding: 12px 16px;
    }

    .first-login-guide-body p {
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .first-login-guide-title,
    .first-login-guide-body p,
    .first-login-guide-title::before,
    .first-login-guide-title::after {
        animation: none;
    }
}
