@font-face {
	font-family: 'icomoon';
	src: url('../fonts/icomoon.eot');
	src: url('../fonts/icomoon.eot?#iefix') format('embedded-opentype'),
		url('../fonts/icomoon.woff') format('woff'),
		url('../fonts/icomoon.ttf') format('truetype'),
		url('../fonts/icomoon.svg#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.syncopate-regular {
  font-family: "Syncopate", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.syncopate-bold {
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-style: normal;
}.icon-home:before {
	content: "\e002";
}
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  font-family: "Source Sans Pro", sans-serif;
  background-color: #FFFFFF;
}
body.overflow-hidden {
  /* when primary navigation is visible, the content in the background won't scroll */
  overflow: hidden;
}


a {
  color: white;
  text-decoration: none;
}
.centraliza1 {
 font-size:2.0em;
 color: #89867e;
 display: block;
 position:relative;
 width: 33.33%; /* 100/12 * 4 (large-4)    */
 text-align: center;
/* bottom: 0; */
}
.centraliza2 {
 font-size:1.5em;
 color: #000;
 display: block;
 position: relative;
 width: 16.66%;  /* 100/12 * 2 (large-2)    */
 text-align:right;
/* bottom: 0; */
}
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */

.cd-header {
  position:relative;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  z-index: 3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-header.menu-is-open {
   background-color:#408080;
    /* add a background color to the header when the navigation is open */
}

.cd-logo {
  display: block;
  position: absolute;
  top: 40%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: .875em;
}
.cd-logo img {
  display: block;
}

@media only screen and (min-width: 768px) {
  .cd-intro h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}


@media screen and (min-width: 769px) and (max-width:1800px) {
.cd-secondary-navx {
  position: absolute;
  top: 65%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0em;
  /* hidden on small devices */
  display: block;
}
.cd-secondary-backup {
  position: absolute;
  top: 300%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0em;
  /* hidden on small devices */
  display: block;
}
}
@media screen and (min-width: 270px) and (max-width:670px) {
.cd-secondary-navx {
  position: absolute;
  top: 65%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -2em;
  /* hidden on small devices */
  display: block;
}	
.cd-secondary-backup {
  position: absolute;
  top: 200%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -2em;
  /* hidden on small devices */
  display: block;
}
.cd-secondary-backupftp {
  position: absolute;
  top: 20%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -2em;
  /* hidden on small devices */
  display: block;
}
	
}


.cd-secondary-nav {
  position: absolute;
  top: 35%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5em;
  /* hidden on small devices */
  display: none;
}
.cd-secondary-nav li {
  display: inline-block;
  margin-left: 2.2em;
}
.cd-secondary-nav a {
  display: inline-block;
  color: blue;
  text-transform: uppercase;
  font-weight: 700;
}

.cd-primary-nav-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
}
.cd-primary-nav-trigger .cd-menu-text {
  color:#F30;
/*  text-transform: uppercase;  */
  font-weight: 700;
  /* hide the text on small devices */
  display: none;
}
.cd-primary-nav-trigger .cd-menu-icon {
  /* this span is the central line of the menu icon */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 22px;
  height: 2px;
  background-color:#036;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  /* these are the upper and lower lines in the menu icon */
}
.cd-primary-nav-trigger .cd-menu-icon::before, .cd-primary-nav-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #036;
  right: 0;
  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
  -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
  transition: transform .3s, top .3s, background-color 0s;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
  top: -5px;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
  top: 5px;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before, .cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  background-color: #FFF;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}

.cd-primary-nav {
  /* addClass('is-visible') em main.js */	
  /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 2%;
  height: 100%;
  width: 100%;
  background-color:transparent;
/*    background-color: #8C7F31; */

  
       /*rgba(2, 23, 37, 0.96); /*  cores    */
  z-index: 1;
  text-align: center;
  padding: 50px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  /** OS COMANDOS ABAIXO QUANDO ATIVOS, FECHAM A JANELA DE OPCOES DO MENU */
/*  
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
*/  
}
.cd-primary-nav li {
  font-size: 12px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: .2em 0;
  text-transform: capitalize;
}
.cd-primary-nav a {
  display: inline-block;
  padding: .4em 1em;
  border-radius: 0.25em;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
  /* transparencia    */
  border-radius: 50%;
/*  background-color:rgba(255,255,255,0.1);*/
  background-color:#FFF;
}
.no-touch .cd-primary-nav a:hover {
/*  background-color: #e36767; */
/*  background-color:rgba(152,140,70,0.5);*/
  background-color:#FFF;
}
.cd-primary-nav .cd-label {
  color: #06446e;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  margin: 0.6em 0 .8em;

}
.cd-primary-nav .cd-cadastros {
  display: inline-block;
  margin: 0 .7em;
}
.cd-primary-nav .cd-nfe {
  display: inline-block;
  margin: 0 .7em;
}
/*
.cd-primary-nav .cd-cadastros a {
  width: 50px;
  height: 50px;
  padding: 0;
  background-image: url("../img/menutwo.svg");
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
*/
.cd-primary-nav .cd-cadastros a {
  width: 50px;
  height: 50px;
  padding: 0;
  background-image: url("../img/menufig.svg");
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.cd-primary-nav .cd-nfe a {
  width: 50px;
  height: 50px;
  padding: 0;
  background-image: url("../img/menufignfe.svg");
  background-repeat: no-repeat;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.cd-primary-nav .cd-social {
  display: inline-block;
  margin: 0 .4em;
}
.cd-primary-nav .cd-social a {
  width: 54px;
  height: 54px;
  padding: 0;
  background-image: url("../img/menutwo.svg");
  background-repeat: no-repeat;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.cd-primary-nav .iconfelist a {
  background-position: 2px 0;
}
.cd-primary-nav .iconfeinutil a {
  background-position: -41px 0;
}

.cd-primary-nav .icopedidos a {
  background-position: -44px 0;
}
.cd-primary-nav .icopedidosbx a {
  background-position: -178px 0;
}


.cd-primary-nav .icocliente a {
  background-position: -133px 0;
}
.cd-primary-nav .icoprodutos a {
  background-position: -44px 0;
}
.cd-primary-nav .iconfe a {
  background-position: -85px 0;
}
.cd-primary-nav .icogrupo a {
  background-position: -1px 0;
}
.cd-primary-nav .icohome a {
  background-position: -176px 0;
}
.cd-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.cd-intro {
  position: relative;
  height: 100%;
  background: url("../img/cd-background-img.jpg") no-repeat center center;
  background-size: cover;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-intro h1 {
  position: absolute;
  width: 90%;
  max-width: 1170px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: white;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center;
}

.cd-main-content {
  position: relative;
  z-index: 1;
}
.cd-main-content p {
  line-height: 1.6;
  margin: 2em 0;
}

@media (min-width: 0px) and (max-width: 1000px) {  /* mobile */

}
@media (min-width: 1001px) and (max-width: 3999px) {  /* GAIAH TABLE CAMPO 1 2 3 */
   .fieldonelogin {
	border-radius: 3px; 
	text-align:center;
	width:100vmax;
   }
}
@media (min-width: 4000px) and (max-width: 8700px) {  /* GAIAH TABLE CAMPO 1 2 3 */
   .fieldonelogin {
	border-radius: 3px; 
	text-align:center;
	width:80vmax;
   }
}


/* AQUI MEDIA mobile abaixo deste (@media (min-width: 275px) and (max-width: 990px)*/
@media (min-width: 991px) and (max-width: 4000px) {  /* LAPTOP ATUAL (04set2024) */

.backgroundlogin {
  background-image: url(imagens/floresta1.jpeg);  
/* Full height */
  height: 100%;
  /* Center and scale the image nicely */
  background-repeat: no-repeat;
  background-position: center; /* Center Background */	
}		
.container-fluid {
	margin-top: 4%;
}
.headerspan{
	color: #FFF;
	font-family: 'Exo', sans-serif;
	font-size: 22px;
	font-weight: 200;
      margin-bottom: 6px;
	margin-left: 20px;
	font-style:italic;
}
.headerspan div span{
  color: #FF0000 !important;
  font-weight: bold;
}
.header div{
	width: 100%;
	color: #FFF;
	font-family: 'Exo', sans-serif;
	font-size: 25px;
	font-weight: 200;
}
.header div span{
	color: #5379fa !important;
}
.grad{
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	z-index: 1;
	opacity: 0.7;
}
.login input{ 
    text-align:center;
}
.login input[type=text]{
	width: 250px;
	height: 40px;
	background: #F7F7F7;
	border: 0px solid rgba(255,255,255,0.6);
	border-radius: 6px;
	color: #000000;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 70px;
}
.login input[type=password]{
	width: 250px;
	height: 40px;
	background: #F7F7F7;
	border: 0px solid rgba(255,255,255,0.6);
	border-radius: 6px;
	color: #000000;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}
.login input[type=submit]{
	width: 250px;
	height: 35px;
	/*background: #04AA6D;*/
	background: #006699;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 6px;
	color: #ffffff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 6px;
	margin-top: 20px;
}
.login input[type=button]:hover{
	opacity: 0.8;
}
.login input[type=button]:active{
	opacity: 0.6;
}
.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=button]:focus{
	outline: none;
}
}
@media (min-width: 275px) and (max-width: 990px) {  /* MOBILE ATUAL (04set2024) */

.backgroundlogin {
   background-image: url(imagens/floresta1.jpeg);  
/* Full height */
  height: 100%;
  /* Center and scale the image nicely */
  background-repeat: no-repeat;
   background-position: center; /* Center Background */	
}		
.container-fluid {
	margin-top: 4%;
}
.headerspan{
	color: #FFF;
	font-family: 'Exo', sans-serif;
	font-size: 22px;
	font-weight: 200;
      margin-bottom: 6px;
	margin-left: 20px;
	font-style:italic;
}
.headerspan div span{
  color: #FF0000 !important;
  font-weight: bold;
}
.header div{
	width: 100%;
	color: #FFF;
	font-family: 'Exo', sans-serif;
	font-size: 50px;
	font-weight: 200;
	margin-top: 10%;
}
.header div span{
	color: #5379fa !important;
}
.grad{
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	z-index: 1;
	opacity: 0.7;
}
.login input{ 
    text-align:center;
}
.login input[type=text]{
	width: 550px;
	height: 90px;
	background: #F7F7F7;
	border: 0px solid rgba(255,255,255,0.6);
	border-radius: 6px;
	color: #000000;
	font-family: 'Exo', sans-serif;
	font-size: 30px;
	font-weight: 400;
	padding: 4px;
	margin-top: 70px;
}
.login input[type=password]{
	width: 550px;
	height: 90px;
	background: #F7F7F7;
	border: 0px solid rgba(255,255,255,0.6);
	border-radius: 6px;
	color: #000000;
	font-family: 'Exo', sans-serif;
	font-size: 30px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}
.login input[type=submit]{
	width: 550px;
	height: 95px;
	/*background: #04AA6D;*/
	background: #006699;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 10px;
	color: #ffffff;
	font-family: 'Exo', sans-serif;
	font-size: 32px;
	font-weight: 400;
	padding: 6px;
	margin-top: 20px;
}
.login input[type=button]:hover{
	opacity: 0.8;
}
.login input[type=button]:active{
	opacity: 0.6;
}
.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=button]:focus{
	outline: none;
}
}

@media only screen and (min-width: 368px) {
.backgroundlogin {
   background-image: url(imagens/floresta1.jpeg);  
/* Full height */
  height: 100%;
  /* Center and scale the image nicely */
  background-repeat: no-repeat;
   background-position: center; /* Center Background */	
}		
.large-12 {
    width: 100%; 
   /* margin-left: 120px;*/
}
}

/* Mobile */
/* Mobile */
@media screen and (min-width:20px) and (max-width: 579px) {
.backgroundlogin {
   background-image: url(imagens/floresta1.jpeg);  
/* Full height */
  height: 100%;
  /* Center and scale the image nicely */
  background-repeat: no-repeat;
   background-position: center; /* Center Background */	
}	
.container-fluid {
	margin-top: 14%;
}
.headerspan{
	color: #FFF;
	font-family: 'Exo', sans-serif;
	font-size: 22px;
	font-weight: 200;
      margin-bottom: 6px;
	margin-left: 20px;
	font-style:italic;
}
.headerspan div span{
  color: #FF0000 !important;
  font-weight: bold;
}
.header div{
	width: 100%;
	color: #FFF;
	font-family: 'Exo', sans-serif;
	font-size: 25px;
	font-weight: 200;
}
.header div span{
	color: #5379fa !important;
}
.grad{
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	z-index: 1;
	opacity: 0.7;
}
    
.login input{ 
    text-align:center;
}
.login input[type=text]{
	width: 20em;
	height: 3.3em;
	background: #F7F7F7;
	border: 0px solid rgba(255,255,255,0.6);
	border-radius: 0px;
	color: #000000;
	font-family: 'Exo', sans-serif;
	font-size: 25px;
	font-weight: 400;
	padding: 10px;
	margin-top: 70px;
}
.login input[type=password]{
	width: 20em;
	height: 3.3em;
	background: #F7F7F7;
	border: 0px solid rgba(255,255,255,0.6);
	border-radius: 0px;
	color: #000000;
	font-family: 'Exo', sans-serif;
	font-size: 25px;
	font-weight: 400;
	padding: 10px;
	margin-top: 30px;
}
.login input[type=submit]{
	width: 20em;
	height: 4.5em;
	background: #04AA6D;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 2px;
	color: #ffffff;
	font-family: 'Exo', sans-serif;
	font-size: 25px;
	font-weight: 400;
	padding: 10px;
	margin-top: 45px;
}
.login input[type=button]:hover{
	opacity: 0.8;
}
.login input[type=button]:active{
	opacity: 0.6;
}
.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=button]:focus{
	outline: none;
}
.datasdocto {
   padding:0;border:0;
   display:block;width:100%;padding:0;
   margin-bottom:20px;
   font-size:9px !important;
   line-height:inherit;
   color:#333;border:0;
   border-bottom:1px solid #e5e5e5;
}
legend {
  display: block;
  width: 100%;
  padding: 10;
  margin-bottom: .5rem;
  font-size: 0.7rem !important;
  line-height: inherit;
}


::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}
::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}
};



@media screen and (min-width:580px) and (max-width: 1100px) {

.backgroundlogin {
   background-image: url(imagens/floresta1.jpeg);  
/* Full height */
  height: 100%;
  /* Center and scale the image nicely */
  background-repeat: no-repeat;
   background-position: center; /* Center Background */	
}	
.container-fluid {
	margin-top: 14%;
}
.headerspan{
	color: #FFF;
	font-family: 'Exo', sans-serif;
	font-size: 22px;
	font-weight: 200;
      margin-bottom: 6px;
	margin-left: 20px;
	font-style:italic;
}
.headerspan div span{
  color: #FF0000 !important;
  font-weight: bold;
}
.header div{
	width: 100%;
	color: #FFF;
	font-family: 'Exo', sans-serif;
	font-size: 25px;
	font-weight: 200;
}
.header div span{
	color: #5379fa !important;
}
.grad{
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	z-index: 1;
	opacity: 0.7;
}
    
.login input{ 
    text-align:center;
}
.login input[type=text]{
	width: 15em;
	height: 2.7em;
	background: #F7F7F7;
	border: 0px solid rgba(255,255,255,0.6);
	border-radius: 0px;
	color: #000000;
	font-family: 'Exo', sans-serif;
	font-size: 20px;
	font-weight: 400;
	padding: 10px;
	margin-top: 70px;
}
.login input[type=password]{
	width: 15em;
	height: 2.7em;
	background: #F7F7F7;
	border: 0px solid rgba(255,255,255,0.6);
	border-radius: 0px;
	color: #000000;
	font-family: 'Exo', sans-serif;
	font-size: 20px;
	font-weight: 400;
	padding: 10px;
	margin-top: 30px;
}
.login input[type=submit]{
	width: 15em;
	height: 2.5em;
	background: #04AA6D;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 2px;
	color: #ffffff;
	font-family: 'Exo', sans-serif;
	font-size: 20px;
	font-weight: 400;
	padding: 10px;
	margin-top: 45px;
}
.login input[type=button]:hover{
	opacity: 0.8;
}
.login input[type=button]:active{
	opacity: 0.6;
}
.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=button]:focus{
	outline: none;
}
.datasdocto {
   padding:0;border:0;
   display:block;width:100%;padding:0;
   margin-bottom:20px;
   font-size:9px !important;
   line-height:inherit;
   color:#333;border:0;
   border-bottom:1px solid #e5e5e5;
}
legend {
  display: block;
  width: 100%;
  padding: 10;
  margin-bottom: .5rem;
  font-size: 0.7rem !important;
  line-height: inherit;
}


::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}
::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}
};


/*     1366   */
@media screen and (min-width:1101px) and (max-width: 1368px) {
.backgroundlogin {
   background-image: url(imagens/floresta1.jpeg);  
/* Full height */
  height: 100%;
  /* Center and scale the image nicely */
  background-repeat: no-repeat;
   background-position: center; /* Center Background */	
}	
.container-fluid {
	margin-top: 4%;
}
.headerspan{
	color: #FFF;
	font-family: 'Exo', sans-serif;
	font-size: 22px;
	font-weight: 200;
      margin-bottom: 6px;
	margin-left: 20px;
	font-style:italic;
}
.headerspan div span{
  color: #FF0000 !important;
  font-weight: bold;
}
.header div{
	width: 100%;
	color: #FFF;
	font-family: 'Exo', sans-serif;
	font-size: 25px;
	font-weight: 200;
}
.header div span{
	color: #5379fa !important;
}
.grad{
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	z-index: 1;
	opacity: 0.7;
}
    
.login input{ 
    text-align:center;
}
.login input[type=text]{
	width: 250px;
	height: 30px;
	background: #F7F7F7;
	border: 0px solid rgba(255,255,255,0.6);
	border-radius: 0px;
	color: #000000;
	font-family: 'Exo', sans-serif;
	font-size: 13px;
	font-weight: 400;
	padding: 4px;
	margin-top: 70px;
}
.login input[type=password]{
	width: 250px;
	height: 30px;
	background: #F7F7F7;
	border: 0px solid rgba(255,255,255,0.6);
	border-radius: 0px;
	color: #000000;
	font-family: 'Exo', sans-serif;
	font-size: 13px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}
.login input[type=submit]{
	width: 260px;
	height: 35px;
	background: #04AA6D;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 2px;
	color: #ffffff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 6px;
	margin-top: 20px;
}
.login input[type=button]:hover{
	opacity: 0.8;
}
.login input[type=button]:active{
	opacity: 0.6;
}
.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=button]:focus{
	outline: none;
}
.datasdocto {
   padding:0;border:0;
   display:block;width:100%;padding:0;
   margin-bottom:20px;
   font-size:9px !important;
   line-height:inherit;
   color:#333;border:0;
   border-bottom:1px solid #e5e5e5;
}
legend {
  display: block;
  width: 100%;
  padding: 10;
  margin-bottom: .5rem;
  font-size: 0.7rem !important;
  line-height: inherit;
}


::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}
::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}
};

/* Mobile */
@media screen and (min-width:20px) and (max-width: 1100px) {
.headercheck{
	/*
	width: 45px;
      height: 45px;
	color: #000;
	font-family: 'Exo', sans-serif;
	font-size: 45px !important;
	font-weight: 200;
      margin-bottom: 6px;
	margin-left: 10px;
	font-style:italic;
	text-align: center;
      vertical-align: bottom;
		padding: 70px;

	
	width: 45px;
      height: 45px;
	color: #000;
	font-family: 'Exo', sans-serif;
	font-size: 45px !important;
	font-weight: 200;
      margin-bottom: 6px;
	margin-left: 10px;
	font-style:italic;
	text-align: center;
      vertical-align: bottom;
	padding: 70px;
	*/
}
.headercheck span{
  font-size: 40px !important;
  color: #FF0000 !important;
  font-weight: bold;
}
};


@media screen and (min-width:1101px) and (max-width: 4000px) {
body{
	margin: 0;
	padding: 0;
	font-family: Arial;
	font-size: 12px;
	background-color: #000000;
	/*background-image: url(imagens/floresta1.jpeg);  */
}
.backgroundlogin {
   background-image: url(imagens/floresta1.jpeg);  
/* Full height */
  height: 100%;
  /* Center and scale the image nicely */
  background-repeat: no-repeat;
   background-position: center; /* Center Background */	
}
.container-fluid {
	margin-top: 2%;
}
.headerspan{
	color: #000;
	font-family: 'Exo', sans-serif;
	font-size: 32px;
	font-weight: 200;
      margin-bottom: 6px;
	margin-left: 20px;
	font-style:italic;
}
.headerspan div span{
  color: #FF0000 !important;
  font-weight: bold;
}
.headercheck{
	width: 20em;
	height: 4em;
	color: #000;
	font-family: 'Exo', sans-serif;
	font-size: 45px !important;
	font-weight: 200;
      margin-bottom: 6px;
	margin-left: 10px;
	font-style:italic;
	text-align: center;
      vertical-align: bottom;
}
.headercheck span{
  font-size: 30px !important;
  color: #FF0000 !important;
  font-weight: bold;
}
.headercheck100{

	color: #000;
	font-family: 'Exo', sans-serif;
	font-size: 20px !important;
	font-weight: 200;
	margin-left: 20px;
	font-style:italic;
	text-align: center;
}
.header div{
	width: 100%;
	color: #000;
	font-family: 'Exo', sans-serif;
	font-size: 25px;
	font-weight: 200;
}
.header div span{
	color: #5379fa !important;
}
.grad{
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	z-index: 1;
	opacity: 0.7;
}
.large-12 {
    width: 100%; 
    margin-left: 0px;
}
.login input{ 
    display: inline-block; /* centraliza input */
	text-align:center;
}
.login input[type=text]{
	width: 250px;
	height: 40px;
	background: #F7F7F7;
	border: 0px solid rgba(255,255,255,0.6);
	border-radius: 0px;
	color: #000000;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 70px;
	text-align:center;
}
.login input[type=password]{
	width: 250px;
	height: 40px;
	background: #F7F7F7;
	border: 0px solid rgba(255,255,255,0.6);
	border-radius: 0px;
	color: #000000;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}
.login input[type=submit]{
	width: 260px;
	height: 35px;
	background: #ffffff;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 2px;
	color: #000000;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 6px;
	margin-top: 20px;
}
.login input[type=button]:hover{
	opacity: 0.8;
}
.login input[type=button]:active{
	opacity: 0.6;
}
.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=button]:focus{
	outline: none;
}
.datasdocto {
   font-size: 21px;
	
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
}
::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}
::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}
}
@media screen and (min-width:7000px) and (max-width: 7680px) {
body{
	margin: 0;
	padding: 0;
	font-family: Arial;
	font-size: 22px;
	/*background-image: url(imagens/w18.jpg); */

}
.grad{
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	z-index: 1;
	opacity: 0.7;
}
.header div{
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 45px;
	font-weight: 200;

}
.header div span{
	color: #5379fa !important;
}
.login input{ 
    display: inline-block; /* centraliza input */
	text-align:center;
}
.login input[type=text]{
	width: 250px;
	height: 60px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 26px;
	font-weight: 400;
	padding: 4px;
}
.login input[type=password]{
	width: 250px;
	height: 60px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 26px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}
.login input[type=submit]{
	width: 260px;
	height: 60px;
	background: #fff;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 2px;
	color: #a18d6c;
	font-family: 'Exo', sans-serif;
	font-size: 36px;
	font-weight: 400;
	padding: 6px;
	margin-top: 10px;
}
.login input[type=button]:hover{
	opacity: 0.8;
}
.login input[type=button]:active{
	opacity: 0.6;
}
.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}
.login input[type=button]:focus{
	outline: none;
}
::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}
::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}
}
