* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0;
	margin: 0;
	font-family: 'Ubuntu', sans-serif;
}

img{
	max-width: 300px;
}

form{
	margin-bottom: 20px;
	text-align: center;
}

.campo{
	width: 300px;
    height: 40px;
    text-align: center;
}

button{
	margin-top: 10px;
	padding: 10px 15px;
}

.cartao {
	font-family: 'Ubuntu', sans-serif;
	font-size: 8px;
	width: 312px;
	height: 204px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
}

td {
	text-transform: uppercase;
	padding: 2px;
}

.table {
	width: 100%;
	background-color: transparent;
}

.table th,
.table td {
	padding: 0.3rem;
	vertical-align: top;
	border-top: 1px solid #000;
	border-radius: 2px;
	text-align: center;
}

.table thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #000;
}

.table tbody+tbody {
	border-top: 2px solid #000;
}

.table .table {
	background-color: #fff;
}

.table-bordered th,
.table-bordered td {
	border: 1px solid #000;
}

.table-bordered thead th,
.table-bordered thead td {
	border-bottom-width: 2px;
}

@media print
{
    .nao-imprimir
    {
        display: none !important;
	}

	.cartao{
		display: block !important;
		border: none;
	}
}

.rodape
{
	display: flex;
	justify-content: space-between;
}