﻿.light-bg-image {
    /*background-image: url('/assets/img/loginImages/LoginImg3.png');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Optional: light overlay for readability */
.light-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55); /* adjust opacity */
    z-index: 0;
}
.light-bg-image > div {
    position: relative;
    z-index: 1;
}

.no-border {
    border: none !important;
}
.tag-slide {
    position: absolute;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 1.5s ease, opacity 1.5s ease;
    font-size: 0.95rem;
    color: #6c757d; /* text-muted */
}

    .tag-slide.active {
        opacity: 1;
        transform: translateX(0);
    }

    .tag-slide.exit-left {
        opacity: 0;
        transform: translateX(-100%);
    }