/* ================================================================
   Personalizacao TRUST - logo, remocao do nome padrao e paleta
   verde / branco / preto
   ================================================================ */

/* --- Logo: substitui o logo tricolor padrao do Guacamole --- */
.logo {
    background-image: url(images/trust-logo.png) !important;
    width: 12em !important;
    height: 4.3em !important;
    background-size: contain !important;
    -moz-background-size: contain !important;
    -webkit-background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* --- Remove nome "Apache Guacamole" e numero de versao, deixa so a logo --- */
.login-ui .login-dialog .version,
.version {
    display: none !important;
}

/* --- Botoes principais (login, salvar, etc) em verde --- */
input[type="submit"],
input[type="button"],
button:not(.button) {
    background-color: #4c7a1f !important;
    border-color: rgba(0, 0, 0, 0.4) !important;
    color: #fff !important;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button:not(.button):hover {
    background-color: #6ea82f !important;
}

input[type="submit"]:active,
input[type="button"]:active,
button:not(.button):active {
    background-color: #3a5c16 !important;
}

input[type="submit"]:disabled,
input[type="button"]:disabled,
button:not(.button):disabled {
    background-color: #4c7a1f !important;
    color: hsla(0, 0%, 100%, 0.5) !important;
    opacity: 0.6 !important;
}

/* --- Foco em campos de formulario com destaque verde --- */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 1px hsla(0, 0%, 100%, 0.85), 0 0 0 3px rgba(76, 122, 31, 0.75) !important;
}

/* --- Links --- */
.login-ui a,
.settings a {
    color: #4c7a1f;
}
