html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Sankay Variáveis */

:root {
  --main-bg-color: #0016b9;
  --cinza-claro: #F5F5F5;
  --cinza-medio: #CCCCCC;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.anybody {
  font-family: "Anybody", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
/* Site */

body {
    background-color: var(--main-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    width: 90%;
    max-width: 600px;
    padding-bottom: 50px;
}
.cabecalho, .meio, .rodape {
    padding: 30px;
}
.logo {
    width: 150px;
}
.meio {
    background-color: #FFFFFF;
    border-radius: 5px 5px 0 0;
}
.erro {
    background-color: #FFFFC5;
    border: 2px solid yellow;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}
.meio h1 {
    font-size: 3vh;
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cinza-medio);
}
.meio h2 {
    margin: 30px 0;
    font-size: 2.8vh;
    font-weight: 400;
}
.meio h2 span {
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    color: var(--main-bg-color);
    font-weight: 600;
    margin-right: 10px;
    border: 2px solid var(--main-bg-color);
}
table {
  border-collapse: collapse;
  width: 100%;
}
b {
    font-weight: 700;
}
table td, table th {
  border: 1px solid #ddd;
  padding: 8px;
}
table tr:nth-child(even){
    background-color: #f2f2f2;
}
.suporte {
    font-size: 3vh;
    display: block;
    padding: 20px;
    background-color: #4FCE5D;
    box-sizing: border-box;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
    border-radius: 5px;
    text-align: center;
}
.rodape {
    background-color: var(--cinza-claro);
    border-radius: 0 0 5px 5px;
}
label {
    display: block;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 10px;
}
label input {
    width: 100%;
    font-size: 2.5vh;
    padding: 10px;
    margin: 10px auto;
    box-sizing: border-box;
}
span.direita {
    display: block;
    text-align: right;
}
input[type=submit] {
    background-color: var(--main-bg-color);
    cursor: pointer;
    padding: 15px;
    width: 40%;
    border-radius: 5px;
    border: none;
    font-size: 2.5vh;
    color: #FFF;
    box-sizing: border-box;
}