
.brand-animate {
    opacity: 0;
    transform: translateY(-6px);
    animation: fadeSlideDown 0.6s ease-out forwards;
}

.logo-animate {
    animation: pulseSoft 2.5s ease-in-out infinite;
}

.brand-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.brand-slogan {
    color: #DFF7F6;
    font-size: 13px;
    line-height: 1.2;
}

@keyframes fadeSlideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseSoft {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.brand-animate:hover img {
    transform: rotate(-5deg) scale(1.05);
}

.brand-animate img {
    transition: all 0.3s ease;
}
.brand-slogan {
    animation: sloganFade 3s ease-in-out infinite;
}

@keyframes sloganFade {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
.brand-wrap {
    position: relative;
    overflow: hidden;
}

/* text */
.brand-title {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    animation: brandFade 0.6s ease-out forwards;
}

.brand-title span {
    color: #E6FFFA;
    font-weight: 800;
}

/* light line */
.brand-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(255,255,255,0.35);
    transform: translateX(-50%);
    animation: lineGrow 0.8s ease-out forwards;
}

/* animations */
@keyframes brandFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGrow {
    to {
        width: 120px;
    }
}
/* .brand-title {
    transition: letter-spacing 0.3s ease;
} */

.brand-logo:hover .brand-title:hover {
    letter-spacing: 2px;
}

/* ===== BASE ===== */
.login-wrapper {
    min-height: 100vh;
}

.login-box {
    width: 100%;
    max-width: 380px;
}

.login-right .brand-logo {
    width: 60px;
}

/* ===== LEFT: LOGIN ===== */
.login-left {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== RIGHT: BRANDING ===== */
.login-right {
    position: relative;
    background: url('/assets/images/qr360-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 70px;
}

.login-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.25));
}

.login-right>div {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

/* ===== BRAND TEXT ===== */
.login-right .brand-title {
    font-size: 64px;
    font-weight: 900;
}

.login-right .brand-tagline {
    font-size: 22px;
}

.login-right .brand-highlight {
    font-size: 28px;
    font-weight: 900;
    color: #38E1D9;
    margin-bottom: 20px;
}

/* ===== RESPONSIVE: TABLET & MOBILE ===== */
@media (max-width: 991.98px) {

    /* CHỈ HIỆN FORM */
    .login-right {
        display: none !important;
    }

    .login-left {
        width: 100%;
        padding: 40px 20px;
    }

    .login-box {
        max-width: 100%;
    }
}

.logo-layer {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg,
            #00C2B3,
            /* xanh */
            #009F9D,
            #E53935
            /* đỏ */
        );
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.9),
        0 12px 30px rgba(0, 0, 0, 0.25);
}

.logo-layer img,
.logo-layer {
    object-fit: cover;
}

.footer-badge {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

/* Contact */
.footer-contact {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 12px;
}

/* Brand signature */
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
}


.footer-brand .brand-name {
    font-size: 18px;
    color: #ffffff;
    position: relative;
}

/* underline brand */
.footer-brand .brand-name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00C2B3, #009F9D);
    border-radius: 2px;
}

/* hover */
.footer-brand:hover .brand-name {
    color: #00C2B3;
}