/****

A unidade VH ÃƒÂ© referente a altura da viewport, por exemplo, se a altura for 750px, 10vh ÃƒÂ© 
relativo a 75px.

****/

input {
  border: 1px solid #86889e;
  border-radius: 0px 5px 5px 0px;
  padding: 5px;
  height: 15px;
}

#botao{
	border: 0px;
	padding: 15px 50px 15px 50px;
	background: #7eb1ca9e;
	border-radius: 5px;
	height: 50px;
}

#botao:hover{
	background: #7eb1ca9e;
	box-shadow: 2px 2px 16px 0px #88888861;
	cursor: pointer;
}

body{
	margin: 0;
	min-height: 100vh;
	background-color: #ccc;
	background-image: url('pagina.png');
	-webkit-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}

.container{
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: row;
	justify-content: right;
}

.card-central{
	width: 65%;
	height: 50%;
	min-width: 330px;
	padding: 20px;
	text-align: center;
	#background: rgba(255, 255, 255, 0.44);
	padding: 20px;
}

.card-into{
	background: rgba(255, 255, 255, 0.83);
	padding: 15px;
}

.termos{
	background: rgba(255, 255, 255, 0.83);
	max-width: 30%;
	min-width: 330px;
	max-height: 95%;
	padding: 10px;
	position: absolute;
	top: 15px;
	margin-left: -10px;
	text-align: justify;
}

.cabecalho{
	width: 100%;
	height: 30px;
	text-align:right;
}

.cabecalho a{
	padding-top: 3px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 6px;
    background: rgba(0, 0, 0, 0.39);
    text-align: center;
    text-decoration: none;
    color: white;
	border-radius: 50px;
}

.cabecalho a:hover{
	background: red;
    cursor: pointer;
}

.modal-dialog{
	background: white;
	max-height: 550px;
	overflow: auto;
	padding: 10px;
}

.form img{
	width: 15px;
	height: 15px;
	padding: 5px;
	background: #e9e9e9;
	margin-bottom: 0px;
	border: 1px solid #86889e;
	border-radius: 5px 0px 0px 5px;
	margin-right: -1px;
}


.erro{
	background: #f3d5d5;
    border: 1px solid #ccb0b0;
	border-radius: 3px;
	color: #880202;
}

.container-input{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 8px;
	margin-bottom: 7px;
}

#TermosUso{
	display: none;
}

#Visitante{
	display: none;
}