/*
 DATA: 25/02/2026
 AUTOR: Natan Xavier
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--cor-fundo-azul: #1C2843;
	--cor-fundo-roxo: #5A189A;
	--cor-botao-login: #17204D;
	--cor-roxo-escuro: #334086;
	--cor-fundo-claro: #7899C8;
	--cor-texto: #334086;
	--cor-link:  #5A189A; /*#506BA1;*/
	--cor-linha-login: #a3aac4;
	--cor-bg-label: #F0F4FD;
}

html {
    height: 100%;
}

body {
	height: 100%;
	box-sizing: content-box;
  	margin: 0;
	padding: 0;	
	border: 0;
	font-size: 1rem;
	font-family: 'Roboto', sans-serif;
}

form#MAINFORM {
	height: 100%;
	margin: 0;
	padding: 0;	
	border: 0;
	/*overflow: hidden;*/
	display: grid;
	grid-template-areas:
    	"header"
    	"main"
    	"footer";
  	grid-template-rows: 118px 1fr 106px;

	vertical-align: baseline;

	background-image: linear-gradient(to right,#1C2843 80%,#5A189A);
	background-size: cover;
  	background-repeat: no-repeat;
  	background-position: center;
}


p {
	margin: 0;
	padding: 0;
}

div#HEADER2 {
	grid-area: header;
	background-image: linear-gradient(to right,#1C2843 80%,#5A189A);
	border-bottom: 3px solid #39bbc7;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20rem;
}

.ErrorViewer div {
	font-family: 'Roboto',sans serif;
	margin-left: 121px;
}

 td#TDCPF, td#TdSenha  {
	display: flex;
	justify-content: center;
    	align-items: center;
	width: 70%;
    	flex-wrap: nowrap;
	border-radius: 10px;
	border: 1px solid var(--cor-roxo-escuro);
	
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


td#TdCPF {
	position: relative;
}

td#TdCPF.leitura {
	background-color: var(--cor-bg-label)
}

td#TdCPF > span.leitura {
	position: absolute;
    	width: 45px;
    	left: 0;
    	border: none;
}

div#CONTEUDO {
	grid-area: main;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: linear-gradient(to right,#1C2843 80%,#5A189A);
	flex-direction: column;

	width: 100%;

	color: #334086;
}

table#main {
	background-color: #fff;
	width: 55vw;
	min-width: 900px;
	border-radius: 0.8rem;
	border: 1px solid #39BBC7;
	padding: 2rem 1rem;

	box-shadow: 1px 3px 10px 2px rgba(0, 0, 0,0.5);
}

table#main tbody > tr > td {
	margin-bottom: 1rem;
}

table#main .BotaoLinha {
	color: var(--cor-link);
	border: none;
    	background-color: transparent;
    	cursor: pointer;	
	text-decoration: none;
	font-family: 'Roboto',sans serif;
	font-size: 1rem;

	transition: .2s;
}

table#main .BotaoLinha:hover {
	text-decoration: underline;
}

#OlhoSenha, #OlhoNovaSenha {
	position: relative;
}

#OlhoNovaSenha > input.olho {
	position: absolute;
    	top: 1px;
    	right: 7px;
}

#OlhoSenha > input.olho {
	position: absolute;
    	right: 6px;
    	bottom: 6px;
}

#TrCPF, #TrSenha {
	display: flex;
	justify-content: center;
}

#TdCPF > span,td#TdSenha > span {
	flex-basis: 45px;
	border-radius: 10px 0px 0px 10px;
	padding: 6px 10px;
	border-right: 1px solid var(--cor-roxo-escuro) ;
	background-color: var(--cor-bg-label);

	font-family: "Roboto", sans-serif;
	font-weight: bold;
	font-size: 1rem;
	color: var(--cor-texto);
}

#TdCPF > span:nth-child(2) {
	border: none;
	position: absolute;
    	left: 61px;
}

#TdCPF > input, td#TdSenha > input {
	flex-grow: 1;
	border: none;
	outline: none;
	background-color: transparent;
	margin-left: 5px;
	font-family: 'Roboto',sans-serif;
}

input:-webkit-autofill,

input:-webkit-autofill:hover,

input:-webkit-autofill:focus,

input:-webkit-autofill:active  {
    
	-webkit-box-shadow: 0 0 0px 1000px white inset !important;
	background-color: white !important;
}

input.BotaoLogin {
	color: #fff;
	background-color: var(--cor-botao-login);
	
	font-weight: bolder;
	font-size: 1.05rem;
	font-family: 'Roboto', sans-serif;

	width: 50%;
	max-width: 630px;
	padding: 5px 10px;
	margin-bottom: 1rem;

	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 0.8rem;
	
	transition: .5s;
	cursor: pointer;
	box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.25);
}

input.BotaoLogin:hover {
	color: var(--cor-botao-login);
	background-color: #fff;
	border: 1px solid var(--cor-botao-login);
}

input.BotaoCredenciamento {
	color: #fff;
	background-color: var(--cor-link);
	
	font-weight: bolder;
	font-size: 0.85rem;
	
	height: 31px;
	width: 23%;
	max-width: 630px;
	padding: 5px 10px;
	
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 0.8rem;
	
	transition: .5s;
	cursor: pointer;
	box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.25);
}

input.BotaoCredenciamento:hover {
	color: var(--cor-link);
	background-color: #ffffff;
	border: 1px solid var(--cor-link);
}

#TrNovaSenha {
	display: flex;
	align-items: center;
	justify-content: center;	
}

#TrNovaSenha > td#TdNovaSenha, #TrNovaSenha > td#RepetirNovaSenha {
   	display: flex;
    	flex-direction: column;
    	gap: 5px;
    	align-items: center;
    	width: 285px;
    	padding: 5px 0px;
}

#TrNovaSenha > td#TdNovaSenha {
	margin-right: 2rem;
}

 td#TdNovaSenha > span,  td#RepetirNovaSenha > span {
	color: var(--cor-texto);
    	font-size: 0.85rem;
    	font-weight: bold;
    	font-family: 'Roboto', sans serif;
}

td#TdNovaSenha > input,  td#RepetirNovaSenha > input {
	width: 98%;
    	height: 31px !important;
    	padding: 12px 10px;
	border-radius: 10px;
    	border: 1px solid var(--cor-roxo-escuro);
	outline: none;
}

#CELLBTNSENHA {
	display: flex;
    	flex-direction: column;
    	align-items: center;
    	gap: 0.3rem;

	margin: 1rem 0px 0px 0px !important;
}

div.links-uteis {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	gap: 5px;
}

div.links-uteis a {
	color: var(--cor-link);
	text-decoration: none;
	font-family: 'Roboto',sans-serif;
	font-style: italic;
	font-size: 1.1rem;
	transition: .2s;
}

div.links-uteis a:hover {
	text-decoration: underline;
}

#hrCell > hr {
	border: 1px solid var(--cor-link);
	margin: 1rem 0px;
}

div#informcoes {
	display: flex;
	flex-direction: column;
	align-items: center;

	gap: 5px;
}
 	
span.destaque {
	color: var(--cor-texto);
	font-family: "Roboto", sans-serif;
	font-weight: bolder;
	font-size: 1rem;
}

div.links-uteis span.h3 {
	color: var(--cor-texto);
	font-family: "Roboto", sans-serif;

	font-size: 1.3rem;
	font-weight: bolder;
}

#CONTATOS > tbody > tr {
	display: flex;
   	flex-direction: row;
	align-items: center;
	margin-top: 1rem;
}

.CONTATO {
	display: flex;
   	align-items: center;
    	flex-direction: column;
	justify-content: center;
    	width: 50%;
}

.CONTATO > div {
	display: flex;
	flex-direction: row;
	justify-content: center;
	vertical-align: middle;
	align-items: center;

	gap: 0.2rem;
}

.CONTATO > div > span.material-symbols-outlined {
	color: var(--cor-texto);
}

#SECTION5 > span, #SECTION4 > span {
	color: var(--cor-link);
}

.CONTATO > div > span.telefone {
	color: var(--cor-texto);

	font-size: 1.1rem;
	font-family: "Roboto", sans-serif;
}

.CONTATO:first-child {
	border-right: 2px solid var(--cor-texto);
}

div#RODAPE {
	grid-area: footer;
	border-top: 3px solid #39bbc7;
	width: 100%;
	color: #ffffff;
	background-image: linear-gradient(to right,#1C2843 80%,#5A189A);
}