.auth-page {
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    background: #062442 url("../img/painel-desktop-login.81773a56a589.webp?v=20260813-perf") center / cover no-repeat;
    color: #07133a;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    position: relative;
    overflow-x: hidden;
}

.auth-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 14, 30, 0.48), rgba(6, 14, 30, 0.2) 46%, rgba(6, 14, 30, 0.52)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1), rgba(5, 13, 27, 0.42) 72%);
    pointer-events: none;
}

.auth-mobile-verse-bar {
    display: none;
}

.auth-shell {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: clamp(10px, 2.4vw, 24px);
    position: relative;
    z-index: 1;
}

.auth-panel {
    width: min(100%, 460px);
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, #0074c8 0%, #00a66a 48%, #69c929 100%) border-box;
    border: 5px solid transparent;
    border-radius: 22px;
    box-shadow:
        0 30px 86px rgba(4, 16, 36, 0.46),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    padding: clamp(20px, 2.4vw, 26px);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.auth-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 10px;
    background: linear-gradient(90deg, #0074c8, #00a66a, #69c929);
}

.auth-brand {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-bottom: 24px;
}

.auth-brand-centered {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
}

.auth-brand-outside {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: translateX(12px);
}

.auth-brand-image {
    display: block;
    width: min(100%, 196px);
    height: auto;
    max-height: 136px;
    object-fit: contain;
}

.auth-secure-label,
.auth-brand span,
.auth-choice small,
.auth-subtitle,
.auth-note {
    display: block;
    color: #e8eef7;
}

.auth-secure-label {
    font-size: 12px;
    line-height: 1.35;
}


.auth-brand-outside .auth-secure-label {
    margin-top: 2px;
    padding: 3px 12px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 650;
    letter-spacing: 0;
    text-shadow: 0 1px 6px rgba(4, 16, 36, 0.45);
}

.auth-secure-below {
    margin-top: -2px;
    margin-bottom: -2px;
    padding: 2px 11px;
    border: 1px solid rgba(32, 168, 61, 0.42);
    border-radius: 999px;
    background: rgba(232, 255, 224, 0.82);
    color: #148a32;
    font-size: 11.5px;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
    box-shadow: 0 5px 12px rgba(20, 138, 50, 0.12);
}
.auth-logo {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: #0712ff;
    color: #ffffff;
    font-size: 22px;
}

.auth-heading {
    margin: 0 auto 18px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 116, 200, 0.22);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(0, 107, 182, 0.06), rgba(88, 184, 45, 0.05));
}

.auth-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #d9f99d;
    color: #166534;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    animation: authRestrictedBlink 0.9s steps(1, end) infinite;
}

@keyframes authRestrictedBlink {
    0%,
    49% {
        background: #d9f99d;
        color: #166534;
    }

    50%,
    100% {
        background: #fecaca;
        color: #991b1b;
    }
}

.auth-title {
    font-size: clamp(23px, 2.8vw, 27px);
    line-height: 1.2;
    margin: 0 0 6px;
    color: #063f78;
    text-align: center;
}

.auth-subtitle {
    margin: 0;
    margin-bottom: 8px;
    text-align: center;
}


.auth-heading .auth-subtitle {
    color: #5f6f88;
    font-weight: 500;
}

.auth-footer strong {
    color: #dbeafe;
    font-weight: 800;
    white-space: normal;
}
.auth-panel form {
    text-align: left;
}

.auth-link {
    display: inline-block;
    margin-top: 12px;
    color: #063f78;
    text-align: center;
    text-decoration: none;
}

.auth-link:hover,
.auth-link:focus {
    color: #0057b8;
    text-decoration: underline;
}

.auth-access-below {
    margin-top: 10px;
    text-align: center;
}

.auth-access-below .auth-eyebrow,
.auth-access-below .auth-secure-below {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.auth-footer {
    width: min(100%, 460px);
    margin: 0;
    padding: 2px 8px;
    border-radius: 0;
    background: transparent;
    color: #dbeafe;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.35;
    text-align: center;
    text-wrap: balance;
    text-shadow: 0 1px 4px rgba(0, 35, 70, 0.62);
    box-shadow: none;
}

.auth-choice-list {
    display: grid;
    gap: 7px;
}

.auth-choice {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: left;
    border: 1px solid #d8e3f2;
    background: #ffffff;
    border-radius: 22px;
    padding: 12px 14px;
}

.auth-choice:hover,
.auth-choice:focus {
    border-color: #063f78;
    outline: none;
}

.auth-panel .form-label {
    color: #07133a;
    font-weight: 500;
}

.auth-panel .form-control {
    min-height: 42px;
    border-color: #cbd6e6;
}

.auth-panel .form-control:focus {
    border-color: #006bb6;
    box-shadow: 0 0 0 0.2rem rgba(0, 107, 182, 0.14);
}

.auth-panel .btn {
    min-height: 44px;
    border: 0;
    background: linear-gradient(90deg, #006bb6, #0712ff);
    font-weight: 600;
}

.auth-panel .btn:hover,
.auth-panel .btn:focus {
    background: linear-gradient(90deg, #00599a, #060fd4);
}

.auth-remember-toggle {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #063f78;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    user-select: none;
}

.auth-remember-toggle input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.auth-remember-switch {
    width: 27px;
    height: 16px;
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 27px;
    border-radius: 999px;
    background: #dbeafe;
    box-shadow: inset 0 0 0 1px rgba(0, 116, 200, 0.2);
    transition: background 0.18s ease, box-shadow 0.18s ease;
}

.auth-remember-switch::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    left: 2px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(6, 63, 120, 0.22);
    transition: transform 0.18s ease;
}

.auth-remember-switch .bi {
    display: none;
}

.auth-remember-toggle:has(input:checked) {
    color: #148a32;
}

.auth-remember-toggle:has(input:checked) .auth-remember-switch {
    background: linear-gradient(90deg, #0074c8, #20a83d);
    box-shadow: inset 0 0 0 1px rgba(20, 138, 50, 0.22);
}

.auth-remember-toggle:has(input:checked) .auth-remember-switch::after {
    transform: translateX(11px);
}

.auth-panel .auth-login-button {
    width: 176px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 2px auto 0;
    padding: 3px 14px 3px 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #006bb6 0%, #0074c8 48%, #20a83d 100%) !important;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 86, 150, 0.22);
    font-weight: 750;
    line-height: 1;
}

.auth-login-button:hover,
.auth-login-button:focus {
    background: linear-gradient(90deg, #00599a 0%, #0074c8 46%, #148a32 100%) !important;
    box-shadow: 0 14px 28px rgba(0, 86, 150, 0.28);
    transform: translateY(-1px);
}

.auth-login-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #0074c8;
    box-shadow: inset 0 0 0 1px rgba(0, 116, 200, 0.16);
}

.auth-login-icon .bi {
    font-size: 15px;
    line-height: 1;
    animation: authLoginArrow 0.9s ease-in-out infinite;
}

@keyframes authLoginArrow {
    0%,
    100% {
        transform: translateX(-2px);
    }

    50% {
        transform: translateX(3px);
    }
}

@media (max-width: 575.98px) {
    .auth-heading {
        margin-bottom: 16px;
        padding: 12px 14px;
    }

    .auth-page {
        background-color: #0b2f4d;
        background-image: url("../img/background-mobile-login.4ebd30af04a0.webp?v=20260813-perf");
        background-attachment: scroll;
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .auth-page::before {
        background:
            linear-gradient(180deg, rgba(6, 14, 30, 0.18), rgba(6, 14, 30, 0.36)),
            radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.16), rgba(5, 13, 27, 0.18) 68%);
    }

    .auth-shell {
        justify-content: center;
        padding: 14px;
    }

    .auth-panel {
        width: 100%;
        max-height: calc(100dvh - 174px);
        overflow-y: auto;
        padding: 17px;
    }

    .auth-brand-centered {
        margin-bottom: 14px;
    }

    .auth-brand-outside {
        padding: 0;
        transform: translateX(8px);
    }

    .auth-brand-image {
        width: min(100%, 116px);
        max-height: 84px;
    }

    .auth-footer {
    width: min(100%, 460px);
    margin: 0;
    padding: 2px 8px;
    border-radius: 0;
    background: transparent;
    color: #dbeafe;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.35;
    text-align: center;
    text-wrap: balance;
    text-shadow: 0 1px 4px rgba(0, 35, 70, 0.62);
    box-shadow: none;
}
}

@media (min-width: 992px) {
    .auth-shell {
        padding-left: max(40px, 6vw);
        padding-right: max(40px, 6vw);
    }
}
@media (max-width: 575.98px) {
    .auth-footer {
        width: min(100%, 360px);
        padding: 4px 10px calc(4px + env(safe-area-inset-bottom));
        color: #dbeafe;
        font-size: 12.5px;
        font-weight: 700;
        line-height: 1.45;
        text-align: center;
        text-wrap: balance;
        text-shadow: 0 1px 4px rgba(0, 35, 70, 0.62);
    }

    .auth-footer strong {
        color: #118134;
        display: inline;
        font-weight: 800;
    }
}
@media (max-width: 575.98px) {
    .auth-footer,
    .auth-footer strong {
        color: #dbeafe;
    }
}
@media (max-width: 575.98px) {
    .auth-footer,
    .auth-footer strong {
        color: #dbeafe;
        font-weight: 500;
        text-shadow: 0 1px 4px rgba(0, 35, 70, 0.62);
    }
}
@media (max-width: 575.98px) {
    .auth-heading {
        margin-bottom: 14px;
        padding: 9px 12px 10px;
        border-radius: 18px;
    }

    .auth-eyebrow {
        min-height: 20px;
        margin-bottom: 6px;
        padding: 3px 9px;
        font-size: 10.5px;
    }

    .auth-title {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .auth-heading .auth-subtitle {
        font-size: 12px;
        line-height: 1.35;
    }
}
.auth-desktop-brand {
    display: none;
}

.auth-form-column {
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .auth-brand-outside,
    .auth-secure-below {
        display: none;
    }

    .auth-shell {
        gap: 8px;
        padding: 32px;
    }

    .auth-panel {
        width: min(100%, 860px);
        min-height: 520px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
        padding: 0;
        border-width: 5px;
        border-radius: 26px;
        background:
            linear-gradient(#ffffff, #ffffff) padding-box,
            linear-gradient(135deg, #0074c8, #54c732) border-box;
    }

    .auth-panel::before {
        display: none;
    }

    .auth-desktop-brand {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        gap: 52px;
        padding: 22px 30px 36px;
        background:
            linear-gradient(180deg, rgba(3, 38, 72, 0.44), rgba(2, 32, 62, 0.60)),
            url("../img/painel-desktop-login.81773a56a589.webp?v=20260813-perf") center center / cover no-repeat;
        color: #ffffff;
        text-align: center;
        border-radius: 22px 0 0 22px;
        background-color: #052b4b;
    }

    .auth-desktop-brand-content {
        display: grid;
        justify-items: center;
        gap: 6px;
        width: min(100%, 370px);
        margin-top: 0;
    }

    .auth-desktop-logo {
        width: min(100%, 185px);
        height: auto;
        opacity: 1;
        filter: brightness(1.18) contrast(1.12) saturate(1.08) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.46));
    }

    .auth-desktop-brand p {
        max-width: 370px;
        margin: 0;
        color: rgba(255, 255, 255, 0.96);
        font-size: 15px;
        line-height: 1.25;
        font-weight: 700;
    }


    .auth-brand-line {
        display: block;
        white-space: nowrap;
    }
    .auth-desktop-brand blockquote {
        max-width: 310px;
        margin: 0;
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        line-height: 1.45;
    }

    .auth-desktop-brand blockquote span {
        display: block;
        margin-top: 0;
        font-size: 13px;
        font-weight: 700;
    }

    .auth-form-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 46px 52px;
        text-align: left;
    }

    .auth-form-column .auth-heading {
        width: 100%;
        margin: 0 0 28px;
        padding: 14px 18px 16px;
        border: 1px solid rgba(0, 116, 200, 0.22);
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(0, 107, 182, 0.06), rgba(88, 184, 45, 0.05));
        text-align: center;
    }

    .auth-form-column .auth-eyebrow {
        margin-bottom: 10px;
    }

    .auth-form-column .auth-title,
    .auth-form-column .auth-subtitle {
        text-align: center;
    }

    .auth-form-column .auth-title {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .auth-form-column .auth-subtitle {
        max-width: none;
        font-size: 15px;
        line-height: 1.42;
    }

    .auth-form-column .auth-link {
        align-self: center;
        margin-top: 18px;
    }

    .auth-footer {
        width: min(100%, 860px);
    }
}
































.text-brand-green {
    color: #54c732;
    font-weight: 700;
}



.auth-footer-site {
    display: block;
    margin-top: 3px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}


.auth-footer-site:hover,
.auth-footer-site:focus {
    color: #ffffff;
    text-decoration: underline;
}



/* 20260725 mobile verse top bar */
@media (max-width: 575.98px) {
    .auth-page::after {
        display: none;
    }

    .auth-mobile-verse-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 20;
        height: calc(28px + env(safe-area-inset-top));
        display: flex;
        align-items: flex-end;
        overflow: hidden;
        padding-bottom: 6px;
        background: linear-gradient(90deg, #006bb6 0%, #0074c8 48%, #20a83d 100%);
        box-shadow: 0 8px 18px rgba(0, 42, 90, 0.2);
        color: #ffffff;
        pointer-events: none;
    }

    .auth-mobile-verse-text {
        display: inline-block;
        min-width: max-content;
        padding-left: 100%;
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        text-shadow: 0 1px 3px rgba(0, 35, 70, 0.45);
        white-space: nowrap;
        animation: authMobileVerseMarquee 18s linear infinite;
    }

    .auth-mobile-verse-text.is-resetting {
        animation: none;
    }

    @keyframes authMobileVerseMarquee {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }

    .auth-shell {
        padding-top: calc(44px + env(safe-area-inset-top));
    }

    .auth-footer {
        position: static;
        width: min(100%, 360px);
        margin: 0;
        padding: 4px 10px calc(4px + env(safe-area-inset-bottom));
        border-radius: 0;
        background: transparent;
        color: #dbeafe;
        font-size: 12.5px;
        font-weight: 500;
        line-height: 1.45;
        text-align: center;
        text-shadow: 0 1px 4px rgba(0, 35, 70, 0.62);
        box-shadow: none;
    }

    .auth-footer strong {
        color: #dbeafe;
        font-weight: 500;
    }

    .auth-footer-site {
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
    }
}


/* 20260726 mobile banner only */
.auth-mobile-banner {
    display: none;
}

@media (max-width: 575.98px) {
    .auth-mobile-banner {
        display: block;
        width: 100%;
        margin-top: calc(28px + env(safe-area-inset-top));
        overflow: hidden;
        line-height: 0;
    }

    .auth-mobile-banner img {
        display: block;
        width: 100%;
        height: auto;
    }

    .auth-shell {
        padding-top: 2px !important;
    }

    .auth-brand-outside {
        display: none !important;
    }
}



/* 20260726 corrige fluxo mobile com banner */
@media (max-width: 575.98px) {
    .auth-page {
        min-height: 100dvh;
        overflow-y: auto;
    }

    .auth-mobile-banner {
        margin-top: calc(28px + env(safe-area-inset-top));
        margin-bottom: 8px;
    }

    .auth-shell {
        min-height: auto !important;
        justify-content: flex-start !important;
        gap: 6px;
        padding: 4px 10px 12px !important;
    }

    .auth-panel {
        max-height: none !important;
        overflow: visible !important;
        margin-top: 0 !important;
    }
}


/* 20260726 refinamento do painel mobile */
@media (max-width: 575.98px) {
    .auth-panel {
        border-width: 3px !important;
        border-radius: 28px !important;
        padding: 20px 18px 22px !important;
        background:
            linear-gradient(#ffffff, #ffffff) padding-box,
            linear-gradient(145deg, #0074c8 0%, #00a66a 48%, #69c929 100%) border-box !important;
        box-shadow:
            0 18px 44px rgba(0, 35, 70, 0.24),
            0 0 0 1px rgba(255, 255, 255, 0.56) inset !important;
    }

    .auth-panel::before {
        height: 5px;
        border-radius: 28px 28px 0 0;
    }

    .auth-heading {
        border-radius: 18px;
        margin-bottom: 18px;
        padding: 12px 14px;
        background: linear-gradient(180deg, #f8fcff, #f1f8f4);
        border-color: rgba(0, 116, 200, 0.18);
    }
}

/* 20260726 painel mobile com cantos corrigidos */
@media (max-width: 575.98px) {
    .auth-panel {
        border-width: 6px !important;
        border-radius: 30px !important;
        overflow: hidden !important;
        background:
            linear-gradient(#ffffff, #ffffff) padding-box,
            linear-gradient(145deg, #0074c8 0%, #00a66a 48%, #69c929 100%) border-box !important;
        clip-path: inset(0 round 30px);
    }

    .auth-panel::before {
        left: 0;
        right: 0;
        height: 7px;
        border-radius: 30px 30px 0 0;
        overflow: hidden;
    }
}


/* 20260726 painel desktop proporcional com marca d'agua */
@media (min-width: 900px) {
    .auth-desktop-brand {
        position: relative;
        overflow: hidden;
        background:
            linear-gradient(180deg, rgba(3, 38, 72, 0.34), rgba(2, 32, 62, 0.64)),
            url("../img/painel-desktop-login.81773a56a589.webp?v=20260813-perf") center center / cover no-repeat !important;
    }

    .auth-desktop-brand::after {
        content: "";
        position: absolute;
        top: 24px;
        left: 50%;
        width: min(58%, 245px);
        aspect-ratio: 1 / 1;
        transform: translateX(-50%);
        background: url("../img/logo-ministerioon-login.23d7310eff1a.webp?v=20260813-perf") center / contain no-repeat;
        opacity: 0.18;
        filter: saturate(0.85) brightness(1.2);
        pointer-events: none;
        z-index: 0;
    }

    .auth-desktop-brand-content,
    .auth-desktop-brand .auth-verse {
        position: relative;
        z-index: 1;
    }
}

/* 20260726 marca d'agua desktop mais forte */
@media (min-width: 900px) {
    .auth-desktop-brand::after {
        top: 18px;
        width: min(72%, 310px);
        opacity: 0.34;
        filter: saturate(1.05) brightness(1.18) contrast(1.05);
    }
}

/* 20260726 marca d'agua desktop mais visivel */
@media (min-width: 900px) {
    .auth-desktop-brand::after {
        top: 14px;
        width: min(78%, 340px);
        opacity: 0.58;
        filter: saturate(1.25) brightness(1.35) contrast(1.12) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
    }
}

/* 20260726 ajuste final marca e borda desktop */
@media (min-width: 900px) {
    .auth-panel {
        border-width: 4px !important;
        border-radius: 30px !important;
        overflow: hidden !important;
        box-shadow:
            0 28px 78px rgba(4, 16, 36, 0.42),
            0 0 0 1px rgba(255, 255, 255, 0.18) inset !important;
    }

    .auth-desktop-brand {
        border-radius: 26px 0 0 26px !important;
    }

    .auth-desktop-brand::after {
        top: 26px;
        width: min(58%, 245px);
        opacity: 0.44;
        filter: saturate(1.12) brightness(1.22) contrast(1.08) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
    }
}

/* 20260726 contorno da marca no painel desktop */
@media (min-width: 900px) {
    .auth-desktop-brand::after {
        opacity: 0.52;
        filter:
            saturate(1.18)
            brightness(1.28)
            contrast(1.14)
            drop-shadow(0 0 1px rgba(105, 201, 41, 0.95))
            drop-shadow(0 0 4px rgba(105, 201, 41, 0.70))
            drop-shadow(0 10px 18px rgba(0, 0, 0, 0.26));
    }

    .auth-desktop-brand::before {
        content: "Gestão de Igrejas";
        position: absolute;
        top: 232px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.82);
        font-size: 15px;
        font-weight: 800;
        line-height: 1;
        text-shadow:
            0 0 1px rgba(255, 255, 255, 0.95),
            0 0 6px rgba(255, 255, 255, 0.48),
            0 2px 8px rgba(0, 0, 0, 0.42);
        pointer-events: none;
        z-index: 1;
        white-space: nowrap;
    }
}

/* 20260726 remove texto gestao sobreposto */
@media (min-width: 900px) {
    .auth-desktop-brand::before {
        content: none !important;
        display: none !important;
    }
}

/* 20260726 cores do rodape de login */
.auth-footer,
.auth-footer strong,
.auth-footer-site {
    color: #0a5f99 !important;
}

.auth-footer-brand {
    color: #20a83d !important;
    font-weight: 900;
}

/* 20260726 rodape tecnologia e link brancos */
.auth-footer {
    font-size: 16px !important;
}

.auth-footer strong,
.auth-footer-site {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

.auth-footer-brand {
    color: #20a83d !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}


/* 20260726 arredonda cantos do painel mobile */
@media (max-width: 899.98px) {
    .auth-panel {
        border: 5px solid transparent !important;
        border-radius: 34px !important;
        background:
            linear-gradient(#ffffff, #ffffff) padding-box,
            linear-gradient(135deg, #0586c8 0%, #079f99 48%, #5bd21e 100%) border-box !important;
        overflow: hidden !important;
        box-shadow: 0 22px 54px rgba(4, 20, 38, 0.28) !important;
    }

    .auth-panel::before {
        display: none !important;
        content: none !important;
    }

    .auth-form-column {
        border-radius: 28px !important;
    }
}

/* 20260726 restaura rodape mobile azul */
@media (max-width: 899.98px) {
    .auth-footer,
    .auth-footer strong,
    .auth-footer-site {
        color: #0a5f99 !important;
        font-size: 13px !important;
        font-weight: 800 !important;
    }

    .auth-footer-brand {
        color: #20a83d !important;
        font-size: 13px !important;
        font-weight: 900 !important;
    }
}

/* 20260726 rodape mobile claro novamente */
@media (max-width: 899.98px) {
    .auth-footer {
        color: #dbeafe !important;
        font-size: 13px !important;
        font-weight: 750 !important;
        text-shadow: 0 1px 5px rgba(0, 22, 48, 0.65) !important;
    }

    .auth-footer strong,
    .auth-footer-site {
        color: #eef6ff !important;
        font-size: 13px !important;
        font-weight: 800 !important;
    }

    .auth-footer-brand {
        color: #31d957 !important;
        font-size: 13px !important;
        font-weight: 900 !important;
    }
}

/* 20260726 rodape mobile branco com marca verde */
@media (max-width: 899.98px) {
    .auth-footer,
    .auth-footer strong,
    .auth-footer-site,
    .auth-footer span:not(.auth-footer-brand) {
        color: #ffffff !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        text-shadow: 0 1px 5px rgba(0, 22, 48, 0.75) !important;
    }

    .auth-footer-brand {
        color: #31d957 !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        text-shadow: 0 1px 5px rgba(0, 22, 48, 0.75) !important;
    }
}

/* 20260726 rodape desktop e mobile branco com marca verde */
.auth-footer,
.auth-footer strong,
.auth-footer-site,
.auth-footer span:not(.auth-footer-brand) {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    text-shadow: 0 1px 5px rgba(0, 22, 48, 0.75) !important;
}

.auth-footer-brand {
    color: #31d957 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    text-shadow: 0 1px 5px rgba(0, 22, 48, 0.75) !important;
}

@media (max-width: 899.98px) {
    .auth-footer,
    .auth-footer strong,
    .auth-footer-site,
    .auth-footer span:not(.auth-footer-brand),
    .auth-footer-brand {
        font-size: 13px !important;
    }
}

/* 20260726 frase desktop verde ministerioon */
@media (min-width: 900px) {
    .auth-desktop-brand p,
    #auth-brand-message {
        color: #58c832 !important;
        font-weight: 900 !important;
        text-shadow:
            0 1px 2px rgba(0, 20, 38, 0.9),
            0 0 8px rgba(88, 200, 50, 0.34) !important;
    }
}

/* 20260726 sombras brancas no painel desktop */
@media (min-width: 900px) {
    .auth-desktop-brand::after {
        filter:
            saturate(1.14)
            brightness(1.26)
            contrast(1.12)
            drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
            drop-shadow(0 0 5px rgba(255, 255, 255, 0.58))
            drop-shadow(0 10px 18px rgba(0, 0, 0, 0.26)) !important;
    }

    .auth-desktop-brand p,
    #auth-brand-message {
        text-shadow:
            0 1px 2px rgba(0, 20, 38, 0.9),
            0 0 7px rgba(255, 255, 255, 0.45) !important;
    }
}

/* Login: campos com icone lateral no padrao visual do app. */
.auth-field {
    margin-bottom: 18px !important;
}

.auth-field .form-label {
    margin-bottom: 8px;
    color: #07133a;
    font-size: 13px;
    font-weight: 750;
}

.auth-input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 38px;
    border: 1px solid #d6dce5;
    border-radius: 5px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.auth-input-group:focus-within {
    border-color: #58b7da;
    box-shadow: 0 0 0 3px rgba(88, 183, 218, 0.14);
}

.auth-input-icon {
    width: 41px;
    min-width: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #58b7da;
    color: #ffffff;
    font-size: 16px;
}

.auth-password-toggle {
    border: 0;
    padding: 0;
    cursor: pointer;
}

.auth-password-toggle:hover,
.auth-password-toggle:focus {
    background: #43a8cc;
    color: #ffffff;
    outline: none;
}

.auth-password-toggle:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.76);
}

.auth-input-group .form-control {
    min-height: 36px;
    height: 36px;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    color: #07133a;
    font-size: 13px;
    font-weight: 650;
    padding: 7px 12px;
}

.auth-input-group .form-control:focus {
    border: 0;
    box-shadow: none !important;
}

.auth-input-group .form-control::placeholder {
    color: #71839b;
    font-weight: 500;
}

.auth-remember-box {
    width: 13px;
    height: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 13px;
    border: 1px solid #c6ceda;
    border-radius: 2px;
    background: #ffffff;
}

.auth-remember-toggle:has(input:checked) .auth-remember-box {
    border-color: #58b7da;
    background: #58b7da;
    box-shadow: inset 0 0 0 2px #ffffff;
}
.auth-panel .auth-remember-toggle {
    width: fit-content;
    margin: 0 0 14px;
    color: #27314f;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

.auth-panel .auth-remember-toggle:has(input:checked) {
    color: #27314f;
}
