/**
 * -------------------------------------------------------------------------
 * ASADMGMT - AKINSOFT branding for anonymous (login) pages
 * -------------------------------------------------------------------------
 *
 * @package   ASADMGMT
 * @copyright Copyright (C) 2025-2026 AKINSOFT
 * @license   GPLv3+ http://www.gnu.org/licenses/gpl-3.0.txt
 * -------------------------------------------------------------------------
 *
 * GLPI 11 picks plugin stylesheets from ADD_CSS_ANONYMOUS_PAGE instead of
 * ADD_CSS when rendering a not-logged-in page, so asadmgmt.css never reaches
 * the login screen. This file is deliberately separate rather than reusing
 * asadmgmt.css, which also carries broad component overrides (.card,
 * .btn-group, .badge, .dropdown-*) that must not leak into the login form.
 */

/* GLPI renders this logo as a `content:` replaced element sized 200x110, but
   the AKINSOFT login logo (pics/logos/logo-GLPI-250-*.png) is 300x100. The
   default object-fit of `fill` therefore squeezed it horizontally. Match the
   artwork's own box and letterbox rather than stretch, so a future logo swap
   cannot reintroduce the distortion. */
.page-anonymous .glpi-logo {
    width: 300px !important;
    height: 100px !important;
    max-width: 100%;
    object-fit: contain !important;
}
