/*
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;
}
.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%;	
	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: space-between;
	flex-direction: row-reverse;
}
#btnConfirmar{
	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;
}
#btnConfirmar:hover {
	border: thin solid #CD7373;
	box-shadow: 0 2px 16px #CD7373;
	-webkit-box-shadow: 0 2px 16px #CD7373;
	-moz-box-shadow: 0 2px 16px #CD7373;
}
#btnAlterarSenha{
	border: none;
	align-self: baseline;
	width: 98%;	
	font-size: .8em;
	text-decoration: underline;
	background-color: white;
	text-align: left;
	padding-left: 2%;
	min-width: 85px;
    max-width: 145px;
}
.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;
}
#btnConfirmar{
	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;	
}
.entra{
	justify-content: space-around;
}
.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
*/