* { margin: 0; padding: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }

/* ==== Wrapper of the forms ==== */
#wrapper { max-width: 100%; min-width: 250px; width: 100%; margin: 0px auto 0px; position: relative; }

/* ==== The form section styling of elements ==== */
#form-section { border-radius: 0px 0px 4px 4px; padding: 5px; -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; -ms-transition: all 1s ease-in-out; transition: all 1s ease-in-out; }
#form-section li { list-style: none; }
#form-section label span { cursor: pointer; color: #00008B; display: block; margin: 5px 0; font-size: 17px; font-weight: bold; }
.left-column    		{ float: left;  width: 48%; }
.right-column   		{ float: right; width: 48%; }
.left1-column   		{ float: left;  width: 20%; margin-right: 5%; }
.center1-column 		{ float: left;  width: 40%; margin-left: 1%; margin-right: 4%; }
.right1-column        	{ float: left;  width: 30%; }
.left-13i-column      	{ float: left;  width: 33%; margin-right: 1%; }
.left-23i-column      	{ float: left;  width: 33%; margin-right: 1%; }
.left-33i-column      	{ float: left;  width: 32%;  }
.left-12g-column      	{ float: left;  width: 67%; margin-right: 1%; }
.right-22g-column     	{ float: left;  width: 32%; }

.obrigatorio    		{ color: #FF4500; }
	
@media (max-width: 800px) {
	.left-column       { width: 100%; } 
	.right-column      { width: 100%; }
	.left1-column      { width: 100%; }
	.center1-column    { width: 100%; }
	.right1-column     { width: 100%; }
	.left-13i-column   { width: 100%; }
	.left-23i-column   { width: 100%; }
	.left-33i-column   { width: 100%; }
	.left-12g-column   { width: 100%; }
	.right-22g-column  { width: 100%; }
}

/* ==== Inputs and Buttons of the form, with hover and focus behavior ==== */
#form-section input { width: 100%; border: 1px solid #CCC; background: #333; margin: 0 0 5px; padding: 5px; border-radius: 5px; font-size: 12px; padding-right: 30px; color: #DDD; }
#form-section input:hover { border: 1px solid #666; -webkit-transition: border-color 0.2s ease-in-out; -moz-transition: border-color 0.2s ease-in-out; -o-transition: border-color 0.2s ease-in-out; -ms-transition: border-color 0.2s ease-in-out; transition: border-color 0.2s ease-in-out; }

#form-section textarea { width: 100%; border: 1px solid #CCC; background: #333; margin: 0 0 5px; padding: 5px; border-radius: 5px; font-size: 12px; padding-right: 30px; color: #DDD; }
#form-section textarea:hover { border: 1px solid #666; -webkit-transition: border-color 0.2s ease-in-out; -moz-transition: border-color 0.2s ease-in-out; -o-transition: border-color 0.2s ease-in-out; -ms-transition: border-color 0.2s ease-in-out; transition: border-color 0.2s ease-in-out; }

/* here you can change the properties of the submit button */
#form-section button[type="submit"] { cursor: pointer; width: 100%; height: 36px; line-height: 36px; border: none; color: #FFF; margin: 20px 0 5px; border-radius: 3px; display: block; font-size: 14px; background: #94B84B; -webkit-box-shadow: 0 4px 0 #729131; box-shadow: 0 4px 0 #729131; }
#form-section button[type="submit"]:hover { background-color: #729131; -webkit-transition: background 0.3s ease-in-out; -moz-transition: background 0.3s ease-in-out; -o-transition: background 0.3s ease-in-out; -ms-transition: background 0.3s ease-in-out; transition: background 0.3s ease-in-out; }
#form-section input:focus { outline: 0; border: 1px solid #666; }
#form-section label.rem-me { font-size: 12px; }

/* === The section numbering from the registration form === */
#form-section p { padding-top: 5px; margin: 5px 0px; font-size: 15px; font-weight: bold; border-top: 1px dashed #2D3538; }
span.register-numbering { padding: 3px 8px; background-color: #94B84B; color: #333; margin-right: 10px; border-radius: 3px; }
span.register-numbering-text { color: #333; }
span.separador { color: #333; border-top: 1px dashed #2D3538; }
/* === The section numbering from the registration form === */

/* ==== Placeholder customization ==== */
 :-webkit-input-placeholder { color: #888; }
 :-moz-placeholder { color: #888; }
 :-ms-input-placeholder { color: #888; }
/* ==== End of placeholder customization ==== */

/* === HTML5 validation styles === */
#form-section input:required:valid { background: #333 url(../imagens/icone-form-ok.png)   no-repeat 99% 50%; background-position: right 6px center; }
#form-section input:focus:invalid  { background: #333 url(../imagens/icone-form-erro.png) no-repeat 99% 50%; background-position: right 6px center; }

#form-section textarea:required:valid { background: #333 url(../imagens/icone-form-ok.png)   no-repeat 99% 50%; background-position: right 6px center; }
#form-section textarea:focus:invalid  { background: #333 url(../imagens/icone-form-erro.png) no-repeat 99% 50%; background-position: right 6px center; }

/* === Custom checkbox (Remember me checkbox) === */
#checkbox li { margin-top: 10px; border-radius: 4px; position: relative; display: inline-block; border: 1px solid #2D3538; top: 5px; }
#checkbox li:hover { border: 1px solid #666; -webkit-transition: border-color 0.2s ease-in-out; -moz-transition: border-color 0.2s ease-in-out; -o-transition: border-color 0.2s ease-in-out; -ms-transition: border-color 0.2s ease-in-out; transition: border-color 0.2s ease-in-out; }
#checkbox li input { display: none; }
#checkbox label { font-size: 14px; margin-left: 6px; color: #ddd; }
#checkbox .selected { background-color: #333; }
#checkbox .selected span.unchecked-state { display: none; }
span.unchecked-state { display: block; width: 18px; height: 18px; color: #fff; cursor: pointer; background-color: #2D3538; border-radius: 4px; }
span.checked-state { display: none; width: 18px; height: 18px; cursor: pointer; background-color: #2D3538; background-image: url(../imagens/icone-form-check.png); background-repeat: no-repeat; background-position: 50% 50%; border-radius: 4px; }
#checkbox li.selected span.checked-state { display: block; }
/* === Custom checkbox (Remember me checkbox) === */

/* ==== HTML5 Custom Validation Bubble for Chrome ===== */
::-webkit-validation-bubble-message { background-color: #E5534E; font-size: 14px; top: -4px; left: 0px; width: auto; margin: 0; border: none; text-align: left; display: block; padding: 6px; border-radius: 4px; -webkit-box-shadow: none; box-shadow: none; text-indent: -22px; }
::-webkit-validation-bubble-message > div > div + * { font-size: 16px; line-height: 32px; font-family: sans-serif; color: #000; }
::-webkit-validation-bubble-icon { background-color: transparent; padding: 0px; text-indent: 0px; display: inline-block; position: relative; background-image: none; background-repeat: none; -webkit-background-size: 100%; -moz-background-size: 100%; background-size: 100%; float: left; }
::-webkit-validation-bubble-arrow { background-color: transparent; border: none; position: absolute; top: 5px; color: #E5534E; }
::-webkit-validation-bubble-arrow:before { position: absolute; content: "\25E4"; } 
/* ==== End of validation bubbles customization ==== */

/* CAPTCHA ===== */
.captchaimg { position: relative; float:left; text-align:left; width: 90%; min-height:40px; margin-right: 10px; padding:0px; margin-bottom: 10px; }
.captchaimg img { border: 1px solid #CCC; width:150px; height:50px; }
