@charset "utf-8";

*{
	margin: 0;
	padding: 0;
	outline: none;
	list-style: none;
}
body {
	font: 300 16px Oswald;
}

div#login {
	width: 300px;
	margin: 0 auto;
	position: relative;
	top: 200px;
	border: 1px solid #f1f1f1;
	padding: 15px;
}
.logo {
	width: 101px;
	height: 115px;
	margin: 0 auto;
}
.acomodar {
	margin: 0 auto;
	width: 250px;
}

div#login label {
	display: block;
	padding-top: 5px;
}

div#login h1 {
	text-aling: center;
}

.cadastrar {
	font: 300 16px Oswald;
}

.txt {
	border: none;
	height: 40px;
	width: 250px;
	border: thin solid #f1f1f1;	
}

.txt:focus {
	border: thin solid #09f;
	box-shadow: 0 2px 16px #09f;
	-webkit-box-shadow: 0 2px 10px #09f;
	-moz-box-shadow: 0 2px 10px #09f;
}

.sb {
	display: block;
	border: none;
	width: 250px;
	height: 40px;
	margin-top: 10px;
	cursor: pointer;
	font: 400 18px Oswald;
        color: yellow;
        background: #ff0000;
}

.sb:hover {
	background: #09f;
	color: #ffffff;
}
/*Classes de Heranças*/

.bradius {
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}

.fleft {
	float: left;
}

.fright {
	float: right;
}
/*Multiplos Estilos*/
.cadastrar, .txt, .txt:focus, .sb:hover{
	transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
}