.app-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(108, 92, 231, 0.4));
}
.login-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    animation: logo-glow 8s ease-in-out infinite;
    z-index: 10;
}
.login-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
    margin-top: 50px;
    text-align: center;
}
.premium-glow {
    filter: drop-shadow(0 0 25px rgba(108, 92, 231, 0.5));
    transition: filter 2s ease-in-out, transform 2s ease-in-out;
}
.premium-glow:hover {
    filter: drop-shadow(0 0 45px rgba(108, 92, 231, 0.8)) brightness(1.2);
    transform: scale(1.05);
}
/* Ensure the login logo maintains its centering while hovering */
.login-logo.premium-glow:hover {
    transform: translateX(-50%) scale(1.05);
}
@keyframes logo-glow {
    0%, 100% { filter: drop-shadow(0 0 25px rgba(108, 92, 231, 0.4)); }
    50% { filter: drop-shadow(0 0 65px rgba(108, 92, 231, 0.8)); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
