/* ===================================================================
   TSTT CLOUD - CUSTOM BRANDING CSS
   Fonte moderna e profissional similar à logo TROI
   ================================================================ */

/* Importar Google Fonts - Montserrat e Poppins (fontes modernas) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* ===================================================================
   TEXTO "TSTT CLOUD" - FONTE BOLD E MODERNA
   ================================================================ */
.login-ui h2,
.login-ui .login-fields h2,
body h2 {
    font-family: 'Montserrat', 'Arial Black', sans-serif !important;
    font-weight: 700 !important;
    font-size: 32px !important;
    letter-spacing: 1px !important;
    color: #1a1a1a !important;
    text-transform: uppercase !important;
    text-align: center !important;
    margin: 15px 0 !important;
}

/* ===================================================================
   TÍTULO DA PÁGINA (TAB DO NAVEGADOR)
   ================================================================ */
/* Já configurado no index.html como "TSTT Cloud - Acesso Remoto" */

/* ===================================================================
   CAMPOS DE LOGIN - FONTE POPPINS (MAIS LEVE E LEGÍVEL)
   ================================================================ */
.login-ui input[type="text"],
.login-ui input[type="password"],
.login-ui label,
.login-ui button {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
}

.login-ui label {
    font-weight: 500 !important;
    font-size: 14px !important;
}

.login-ui input {
    font-size: 15px !important;
}

/* ===================================================================
   BOTÃO "ENTRAR" - VERDE TSTT
   ================================================================ */
.login-ui button[type="submit"],
button.login {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%) !important;
    border: none !important;
    color: white !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
    padding: 12px 30px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

.login-ui button[type="submit"]:hover,
button.login:hover {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3) !important;
}

/* ===================================================================
   BACKGROUND - CINZA CLARO SUAVE
   ================================================================ */
body,
.login-ui,
html {
    background: #ecf0f1 !important;
}

/* ===================================================================
   LOGO TSTT/TROI
   ================================================================ */
.login-ui .logo {
    background-image: url('images/logo-64.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 200px !important;
    height: 100px !important;
    margin: 20px auto !important;
}

/* ===================================================================
   CAIXA DE LOGIN - SOMBRA E ARREDONDAMENTO
   ================================================================ */
.login-ui .login-dialog {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
    padding: 30px !important;
}

/* ===================================================================
   INPUTS - BORDA VERDE AO FOCAR
   ================================================================ */
.login-ui input:focus {
    border-color: #27ae60 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1) !important;
}

/* ===================================================================
   LINKS - VERDE TSTT
   ================================================================ */
.login-ui a,
.login-ui a:link,
.login-ui a:visited {
    color: #27ae60 !important;
    font-family: 'Poppins', sans-serif !important;
}

.login-ui a:hover {
    color: #229954 !important;
    text-decoration: underline !important;
}

/* ===================================================================
   VERSÃO DO GUACAMOLE (RODAPÉ) - FONTE DISCRETA
   ================================================================ */
.login-ui .version {
    font-family: 'Poppins', sans-serif !important;
    font-size: 11px !important;
    color: #95a5a6 !important;
}

/* ===================================================================
   RESPONSIVIDADE - AJUSTES PARA MOBILE
   ================================================================ */
@media (max-width: 768px) {
    .login-ui h2 {
        font-size: 24px !important;
    }
    
    .login-ui .logo {
        width: 150px !important;
        height: 75px !important;
    }
}

