*{
	margin: 0px;
	padding: 0px;
	font-family: sans-serif;
}

nav{
	background-color: #004c80;
}

header{
	padding: 0 100px;
	width: 100%;
	height: 80px;
	box-sizing: border-box;
	background:  #004c80;
	box-shadow: 0 5px 15px rgba(0,0,0,.2);
	transition: .5s;
}

ul{
	position: relative;
	margin: 0,
	padding: 0;
	display: flex; 
	float: right;
	transition: .5s;
}

li{
	list-style: 
}
body{
	background-image: url("../imagens/fundo_brpermutas.jpg");
	/*background-position: 440px 180px;
	background-size: 490px 340px;*/
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}

input{
	display: block;
	height: 50px;
	width: 300px;
	margin: 10px;
	border-radius: 10px;
	border: 2px solid gray;
	font-size: 16pt;
	padding: 10px 20px;
	background-color: rgba(255,255,255,0.5);
	color: black;
	outline: none;
}
/* Ajuste do corpo do formulário, atualmente em branco */
div#corpo-form {
	background-color: white;
	width: 370px;
	height: 410px;
	margin: 150px auto 0px auto;
	border-radius: 5px;
	box-shadow: 10px 10px 10px rgba(0,0,0,.8);
	/*border: 2px solid black;*/

}

img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 15px;
}

h2{
	display: block;
	text-align: center;
}

div#corpo-form-Cad {
	/*background-color: lightblue;*/
	width: 420px;
	margin: 40px auto 0px auto;
	
}

div#corpo-form h1{
	text-align: center;
	padding: 20px;
	color: black;

}
div#corpo-form-Cad h2{
	text-align: center;
	padding: 20px;
	color: black;

}
a{
	color: black;
	text-decoration: none;
	text-align: center;
	display: block;
}
a:hover{
	text-decoration: underline;
}
input[type=submit]{
	display: inline-block;
	background-color: #004c80; /* Azul padrão da BR Permutas*/
	border: none;
	cursor: pointer;
	color: white;

	
}

div#msg-sucesso{
	width: 400px;
	margin: 10px auto;
	padding: 10px;
	background-color: rgba(50,205,50,.3);
	border: 1px solid rgb(34,139,34);
}

div.msg-erro{
	width: 400px;
	margin: 10px auto;
	padding: 10px;
	background-color: rgba(250,128,114,.3);
	border: 1px solid rgb(165,42,42);
}

