html{
	height: 100%
}

body {
	text-align: center;
	background-color: #fff;
	font-family: Helvetica;
	height: 100%
}

table {
	margin: 0 auto;
}

header .logo {
	width: 240px;
	margin-bottom: 15px;
}

form {
	max-width: 258px;
	margin: auto;
}

form input {
	display: block;
	width: 100%;
	margin: 10px 0;
	padding: 10px 10px;
	margin-bottom: 10px;
	border: 1px solid lightgrey;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 15px;
	text-align: center;
}

form input[type="radio"] {
	display: inline;
	width: auto;
	position: relative;
	margin: 10px 0;
	padding: 10px 10px;
	margin-bottom: 10px;
	border: 1px solid lightgrey;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 15px;
	text-align: center;
	margin-top: 20px;
	margin-right: 10px;
}

form .inp-login {
	border-left: 5px solid #883397;
}

form input:focus {
	box-shadow: 0px 0px 5px #d3d3d3;
	outline: none;
}

form label {
	/* o label fica desta forma para ajudar pessoas que utilizam leitores de tela. 
	 * Desta forma, o elemento não interfere no layout, mas continua existindo para ser lido.
	 Utilizar o visibility: hidden; ou display: none; faz com que não sejam capturados pelos leitores.
	 */
	position: absolute;
	opacity: 0;
	z-index: -1;
}

a{
 text-decoration: none;
 color: #883397
}

.container {
	margin: auto;
	display: table;
	justify-content: center;
	/*align-items: center;*/
	/* margin-top: 30%; */
	height: 100%;
    width: 100%;
}

.container > div:first-of-type {
	display: table-cell;
    height: 100%;
    vertical-align: middle;
}

footer {
	bottom: 0;
	position: absolute;
	width: 100%;
	left: 0;
	margin-bottom: 5px;
	font-size: 12px;
}

.btn-submit {
	margin: 10px auto;
	background: #883397;
	border: none;
	transition: all 200ms;
	line-height: 1.5;
	padding: 15px 20px;
	cursor: pointer;
	color: #fff;
	width: 50%;
	border-radius: 5px 0 0 15px;
	font-size: 14px;
	font-weight: bold;
	margin-top: 8px;
}

main {
	margin-top: 5px;
}

.field-icon {
	float: right;
	margin-top: -39px;
	position: relative;
	z-index: 2;
	font-family: FontAwesome;
	margin-right: 9px;
	height: 19px;
}

.msg {
	padding: 0px;
	/*color: red;*/
	font-size: 10pt;
	max-width: 258px;
	line-height: 1em;
}

.img-captcha {
	border-radius: 0.40em;
	height: 40px;
	margin: 10px 0;
}

.captcha {
	position: relative;
}

.img-renew {
	position: absolute;
	top: 11px;
	right: 9px;
	cursor: pointer;
	height: 19px;
}

.img-play {
	position: absolute;
	top: 31px;
	right: 9px;
	cursor: pointer;
	height: 19px;
}

#wrapper {
	margin-left: auto;
	margin-right: auto;
	height: auto;
	width: auto;
	content: "";
  	clear: both;
  	display: table;
}

#inner1 {
	float: left;
}

#inner2 {
	float: left;
	clear: left;
}