.auth-mobile-brand {
    display: none;
}

@media (max-width: 991.98px) {
    .auth-mobile-brand {
        position: relative;
        display: flex !important;
        align-items: center;
        box-sizing: border-box;
        gap: .9rem;
        margin: var(--auth-mobile-brand-margin-top, -2.5rem) var(--auth-mobile-brand-margin-inline, -2rem) 1.6rem;
        padding: 1rem var(--auth-mobile-brand-padding-inline, 2rem);
        overflow: hidden;
        background: linear-gradient(115deg, rgba(34, 74, 190, .96), rgba(78, 115, 223, .9) 62%, rgba(111, 139, 213, .84));
        border-bottom: 1px solid rgba(255, 255, 255, .3);
        border-radius: 25px 25px 18px 18px;
        box-shadow:
            0 12px 28px rgba(35, 78, 174, .2),
            inset 0 1px 0 rgba(255, 255, 255, .28);
    }

    .auth-mobile-brand::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, .2), transparent 46%);
        pointer-events: none;
    }

    .auth-mobile-brand-logo {
        position: relative;
        z-index: 1;
        width: auto;
        height: auto;
        max-width: 96px;
        max-height: 48px;
        flex: 0 1 auto;
        object-fit: contain;
        filter: drop-shadow(0 7px 10px rgba(15, 42, 94, .22));
    }

    .auth-mobile-brand-copy {
        position: relative;
        z-index: 1;
        min-width: 0;
    }

    .auth-mobile-brand-title {
        margin: 0;
        color: #fff;
        font-size: 1.08rem;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -.02em;
    }

    .auth-mobile-brand-tagline {
        margin: .16rem 0 0;
        color: rgba(255, 255, 255, .76);
        font-size: .76rem;
        line-height: 1.35;
    }
}

@media (max-width: 575.98px) {
    .auth-mobile-brand {
        gap: .75rem;
        margin-bottom: 1.4rem;
        padding-top: .9rem;
        padding-bottom: .9rem;
        border-radius: 23px 23px 17px 17px;
    }

    .auth-mobile-brand-logo {
        max-width: 88px;
        max-height: 44px;
    }

    .auth-mobile-brand-title {
        font-size: 1rem;
    }

    .auth-mobile-brand-tagline {
        font-size: .72rem;
    }
}
