/*
ELABORADO POR RAFAEL AVELAR
VERSÃO 2.0
ATUALIZADO DIA: 06/01/2017
*/

@charset "utf-8";


.conteudo {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: strech;
	align-content: strech;
	padding: 2% 3% 0% 3%;
	flex-grow: 1;
	font-family: verdana;
}
.conteudo p {
	text-align: left;
	margin: 1% 1% 0.5% 0%;
	font-size: 1.1em;
}
.topico {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: strech;
	align-content: strech;
	flex-grow: 1;
	line-height: 1.5em;
	padding: 7% 4%;
	background-color: #fff;
	text-align: center;
	border-radius: 7px;
	margin: 0% 1% 3% 1%;
}
label{
	font-weight: 400;
}
input{
	align-self: center;
	width: 98%;	
	color: #767676;
	border: 1px solid #dbdbdb;
	font-size: 1.2em;
	background-color: #fafafa;
	padding: 1%;
}
input:focus{
	background-color: white;
}
.entra{
	margin-top: 3%;
	display: flex;
	justify-content: flex-end;
}
.entrar{
	cursor: pointer;
	width: 20%;
	min-width: 85px;
	max-width: 145px;
	font-weight: 400;
	font-size: 0.9em;
	background-color: #f5f5f5;
	padding: 10px;
	border: thin solid rgba(0, 0, 0, 0.2);
	border-radius: 10px;
}
.entrar:hover {
	border: thin solid rgb(49,122,190);
	box-shadow: 0 2px 16px rgb(49,122,190);
	-webkit-box-shadow: 0 2px 16px rgb(49,122,190);
	-moz-box-shadow: 0 2px 16px rgb(49,122,190);
}
.titleas{
	margin: 1% 0% 4% 0%;
	text-align: center;
	font-weight: 600;
	font-size: 1.3em;
}
/*================ MOBILE FIRST ================*/
/* SMALL DEVICES - SMARTPHONES */

@media screen and (min-width: 480px){
}

/* SMALL DEVICES - TABLETS */

@media screen and (min-width: 768px){
.titleas{
	margin: 1% 0% 3% 0%;
	font-size: 1.7em;
}
.entrar{
	width: 15%;
}
.topico{
	padding: 5% 3%;
}
}

/* MEDIUM DEVICES - TABLETS & DESKTOPS */
@media screen and (min-width: 960px){ 
.topico {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: strech;
	align-content: strech;
	flex-grow: 1;
	padding: 3% 1%;
}
.dados{
	width: 35%;
	padding: 2%;
	border: 2px solid gray;
	margin: 0 auto;	
}
.titleas{
	font-size: 2em;
}
}

/* LARGES DEVICES - WIDE SCREENS */
@media screen and (min-width: 1280px){
}

/* 
ELABORADO POR RAFAEL AVELAR
VERSÃO 2.0
ATUALIZADO DIA: 06/01/2017
*/