/* * Ajustes de Estilo para a Tela de Login do Guacamole
 * Objetivo: Fundo Branco, Logo Visível e Estética Aprimorada
 */

/* ============================================== */
/* 1. Fundo Principal (Corpo da Tela) */
/* ============================================== */
div.login-ui {
	/* O Guacamole define o fundo aqui. Alterado para branco. */
	background: white;
	background-color: white;
}

/* ============================================== */
/* 2. Diálogo/Caixa de Login (Onde ficam os campos) */
/* ============================================== */
.login-ui .login-dialog {
	background-color: white;
	/* Adicionando estética moderna: cantos arredondados e sombra */
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Sombra suave para destacar */
	padding: 30px 40px; /* Aumenta o espaçamento interno */
	max-width: 400px; /* Define uma largura máxima elegante */
}

/* ============================================== */
/* 3. Logo (Correção de Corte e Aumento de Destaque) */
/* ============================================== */
.login-ui .login-dialog .logo {
	/* Mantém o caminho da imagem original */
    background-image: url('app/ext/tempnamespace/images/logo-placeholder.png');
    
	/* Aumenta o tamanho do container para acomodar a logo */
	width: 10em; /* 15em de largura */
	height: 10em; /* 10em de altura */
	
	/* CORREÇÃO CHAVE: Garante que a imagem inteira caiba */
	background-size: contain;
	-webkit-background-size: contain; /* Para compatibilidade */
	
	/* Garante que o logo não se repita e fique centralizado */
	background-repeat: no-repeat;
	background-position: center;
	
	/* Adiciona margem para separar a logo da área de "VERY APP REMOTO" */
	margin-bottom: 25px;
}

body.home {
    background-color: #cce7ff; /* azul bem clarinho */
    background-image: url('https://verysoftware.com.br/wp-content/uploads/2024/07/logo-branca.png'); /* substitua pelo caminho da sua logo */
    background-repeat: no-repeat;
    background-position: center center; /* centraliza a logo */
    background-size: 150px auto; /* tamanho da logo, largura 150px e altura proporcional */
}/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

/* Label/tag denoting the user that shared a connection */
.jdbc-share-tag {

    background: #0095ff;
    padding: 0.25em;

    -moz-border-radius:    0.25em;
    -webkit-border-radius: 0.25em;
    -khtml-border-radius:  0.25em;
    border-radius:         0.25em;

    color: white;
    font-size: 0.75em;
    font-weight: bold;

}
