﻿@charset "utf-8";

*{
	margin: 0;
	padding: 0;
	outline: none;
	list-style: none;
}
body {
	font: 300 16px Oswald;
}
div#login {
	width: 700px;
	margin: 0 auto;
	position: relative;
	top: 20px;
	border: 1px solid #f1f1f1;
	padding: 15px;
	background-color: #EFFBF8;
}
.restrito {
	width: auto;
	margin: 0 auto;
	position: relative;
	top: 10px;
	border: 1px solid #f1f1f1;
	padding: 15px;
}
.restrito label {
	display: block;
	padding-top: 5px;
}
.restrito table {
	margin: auto;
	padding: 5px 5px 5px 5px;
	font-size: 11pt;
	
}
.restrito table th {
	padding: 5px 5px 5px 5px;
	text-align: center;
}
.restrito table td {
	padding: 5px 5px 5px 5px;
	text-align: center;
	
}
.restrito h1, h2, h3, h4 {
	text-align: center;
}

.logo {
	width: 101px;
	height: 115px;
	margin: 0 auto;
}
.acomodar {
	margin: 0 auto;
	width: 250px;
}
.cont {
	margin: 0 auto;
	width: 300px;
	font-size: 12pt;
}
div#login label {
	display: block;
	padding-top: 5px;
}

div#login table {
	margin: auto;
	width: 300px;
	padding: 5px 5px 5px 5px;
	background-color: #ffffff;
	font-size: 10pt;
	
}

div#login table th {
	padding: 5px 5px 5px 5px;
	text-align: center;
}
div#login table td {
	padding: 5px 5px 5px 5px;
	text-align: center;
	
}
div#login h1, h2, h4 {
	text-align: center;
}

div#login legend {
	text-align: 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;
}

.txt1 {
	border: none;
	height: 40px;
	width: 300px;
	border: thin solid #f1f1f1;	
}

.txt1: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;
}