.formBoxBigger
{
  width: 700px;
  height: 400px;
}
.error
{
  color: #FF0000;
}
.labels
{
	font-size: 17px;
}
.inputFile
{
    width: 400px;
    height: 40px;
    position: relative;
    overflow: hidden;
    background: #ECECEC;
	border: 1px solid #888;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.inputFile span
{
    display: block;
    position: absolute;
	padding: 9px 10px 5px 10px;
}
.inputFile input
{
    position: absolute;
    right: 0;
    z-index: 2;
    font-size: 100px;
 /* Aumenta tamanho do campo */
    opacity: 0;
    filter: alpha(opacity=0);
	cursor: pointer;
}
.btnFile
{
	background-color: #337ab7;
	color: #fff;
	font-weight: bold;
	height: 100%;
	width: 68px;
	float: right;
	transition: background-color .3s ease;
}
.btnFile:hover {
	background-color: #0275d8;
}
#formHeader
{
	background-color: #337ab7;
	width: 553px;
	height: 67px;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-topright: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	margin: auto;
	border: 2px solid #2980b9;
	text-align: center;
}
#formHeader span
{
	line-height: 70px;
}
#formBody
{
	background-color: #ecf0f1;
	width: 553px;
	height: 370px;
	color: #636363;
	-webkit-border-bottom-left-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	-moz-border-radius-bottomleft: 20px;
	-moz-border-radius-bottomright: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	margin: auto;
	border-bottom: 1px solid #95a5a6;
	border-left: 1px solid #95a5a6;
	border-right: 1px solid #95a5a6;
}
#formBody .normaldesc
{
	padding-left: 75px;
	padding-top: 20px;
}
#formBody #formInfo
{
	padding-left: 30px;
	color: #34495e;
}
#formBody #btn_login
{
	width: 400px;
}
