﻿@charset utf-8;
/**********************************************
*  GERAL DA PÁGINA
**********************************************/
*
{
margin: 0;
padding: 0;
}
/**********************************************
*  CORPO DA PÁGINA
**********************************************/
body, html {
width: 100%;
height: 100%;
}
body {
background: #ffffff;
}
/************************************************
*  CAIXAS                                                            *
************************************************/
.fundo
{
min-width: 100%;
width: auto;
min-height: 100%;
height: auto;
background: #ffffff;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.caixa
{
width: auto;
height: auto;
background: #cccccc;
box-shadow: 10px 10px 10px #000000;
padding: 10px;
}
.aviso
{
position: absolute;
width: 75%;
height: auto;
background: #ffff00;
box-shadow: 10px 10px 10px #000000;
padding: 10px;
top: 70px;
}
.ficha
{
width: 100%;
height: auto;
position: absolute;
margin-left: 10px;
margin-right: 10px;
}
.campo
{
width: auto;
height: auto;
display: inline-block;
margin: 2px;
}
.separador
{
width: 100%;
position: static;
}
/**********************************************
*  LINKS
**********************************************/
a {
text-decoration: none;
color: #000080;
font-family: Arial,Helvetica,Sans-Serif;
font-weight: bold;
font-size: 18px;
}
a:visited {
text-decoration: none;
color: #000080;
font-family: Arial,Helvetica,Sans-Serif;
font-weight: bold;
font-size: 18px;
}
a:hover {
color: #ff0000;
}
a.botao {
cursor: pointer;
}
/**********************************************
*  IMAGENS
**********************************************/
img.logotipo {
align: left;
}
/**********************************************
*  PARÁGRAFOS
**********************************************/
p {
color: #000000;
text-align:justify;
font-family: Arial,Helvetica,Sans-Serif;
font-weight: bold;
font-size: 16px;
display: block;
margin-top: 5px;
margin-bottom: 5px;
margin-left: 10px;
margin-right: 10px;
}
/**********************************************
*  LISTAS
**********************************************/
li {
color: #000000;
text-align: left;
font-family: Arial,Helvetica,Sans-Serif;
font-weight: bold;
font-size: 18px;
display: block;
margin-left: 10px;
margin-right: 10px;
}
/**********************************************
*  COMPONENTES DO FORMULÁRIO
**********************************************/
label {
font-family: Arial, Helvetica, Sans-Serif;
font-weight: bold;
font-size: 14px;
color: #000080;
padding: 3px;
cursor: pointer;
}
input {
border: 1px solid #000000;
background: #ffffff;
font-family: Courier New, Calibri, Helvetica, Sans-Serif;
font-weight: bold;
font-size: 14px;
color: #000000;
text-transform: uppercase;
}
input:focus {
background: #ffff00;
}
select {
border: 1px solid #000000;
background: #ffffff;
font-family: Courier New, Calibri, Helvetica, Sans-Serif;
font-weight: bold;
font-size: 14px;
color: #000000;
text-transform: uppercase;
}
select:focus {
background: #ffff00;
}
textarea {
border: 1px solid #000000;
resize: none;
font-family: Calibri, Courier New, Lucida Console;
font-weight: bold;
font-size: 14px;
color: #000000;
}
textarea:focus {
background: #ffff00;
}
button {
all: unset;
cursor: pointer;
outline: revert;
}
input[type=radio], input[type=checkbox] {
display:none; /* Esconde os inputs */
}
input[type="radio"] + label:before {
background: #ffffff;
content: "\2000";
border: 1px solid #000000;
border-radius: 50px;
display: inline-block;
font: 14px/1em sans-serif;
height: 14px;
margin: 0 .25em 0 0;
padding:0;
vertical-align: top;
width: 14px;
}
input[type="checkbox"] + label:before {
background: #ffffff;
content: "\2000";
border: 1px solid #5D5C5C;
display: inline-block;
font: 14px/1em sans-serif;
height: 14px;
margin: 0 .25em 0 0;
padding:0;
vertical-align: top;
width: 14px;
border-radius:4px;
}
input[type="radio"]:checked + label:before {
background: #000080;
color: #ffffff;
content: "\2716";
text-align: center;
}
input[type="checkbox"]:checked + label:before {
background: #000080;
color: #ffffff;
content: "\2714";
text-align: center;
}
input[type=radio"]:checked + label:after, input[type="checkbox"]:checked + label:after {
font-weight: bold;
font-size: 24px;
}