@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700');

body {
    font-family: 'Quicksand', sans-serif !important;
    font-size: 14px;
    color: #002933;
    background-image: url("/cemede/javax.faces.resource/images/login/background_login.png.cemede");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
}

/* Cabeçalho */
header .tc-header {
    height: 60px;
    padding: 10px 0;
    background: #002933;
}

header .tc-logo img {
    width: 150px;
}

/* Conteúdo principal */
.tc-content {
    padding: 20px;
    min-height: calc(100vh - 143px);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Formulário */
.tc-content form {
    width: 100%;
    max-width: 350px;
}

.tc-login {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.tc-login img {
    width: 100%;
    margin-bottom: 25px;
    display: block;
}

/* Labels */
.tc-login label,
.tc-login .control-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #002933;
}

/* Inputs */
.tc-login input {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fafafa;
    transition: border-color 0.3s;
    font-size: 16px;
    color: #999 !important; /* <-- Força o cinza claro no texto preenchido */
}

/* Placeholder */
.tc-login input::placeholder {
    color: #999 !important;
    font-weight: 400;
}




/* Botão Entrar */
.tc-login button,
.tc-login .ui-button {
    width: 100%;
    border: none;
    font-weight: bold;
    color: #ffffff;
    border-radius: 20px;
    transition: background 0.3s;
    font-size: 16px;
}

/* Link de recuperação */
.linkRecover {
    display: block;
    margin-bottom: 20px;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    color: #97969c !important; /* <-- FORÇANDO com !important */
    text-decoration: none;
}

.linkRecover:hover {
    text-decoration: underline;
    color: #97969c !important; /* <-- FORÇANDO no hover também */
}

/* Rodapé */
footer {
    background: #002933;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
}

footer a {
    color: #1FBC1B;
    font-weight: bold;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
	.tc-content {
        display: inline-grid;
    }
    .tc-content form {
        max-width: 100%;
    }

    .tc-login {
        padding: 20px 15px;
    }
}
