/* ==========================================
   WHITE-LABEL APACHE GUACAMOLE
   ========================================== */

/* Hide default Apache Guacamole logo */
.login-ui .logo {
    background-image: none !important;
}

/* Insert company logo */
.login-ui .logo::before {
    content: "";
    display: block;
    background-image: url("/branding/logo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 72px;
    margin-bottom: 10px;
}

/* Hide "Apache Guacamole" title text */
.login-ui h1,
.login-ui .title {
    display: none !important;
}

/* Optional: clean background */
.login-ui {
    background-color: #ffffff;
}

/* Optional: footer removal */
.footer {
    display: none !important;
}

