@CHARSET "UTF-8";

.logotipo {
	box-sizing: border-box;
	max-width: 80%;
	margin: auto;
}

.avanco{
	padding-right: 6px;
}


@import url('fonts.css');

.logotipo2 {
	box-sizing: border-box;
	max-width: 80%;
	margin-top: 10px;
	margin-bottom: 10px;
}

.banner_left {
	margin-left: 30px;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}



#header_b {
	position: static;
	width:100%;
	height:15px;
	color:#000000;
	
	top:0;
    
    background-color:#323131;
    color:#ffffff;
    text-align:right;
    padding-right: 25px;
    font-size:11px;
    box-shadow:
        0 2px 2px rgba(0,0,0,0.2),        
        0 1px 5px rgba(0,0,0,0.2); 
}


#header {	
    /*Caixa*/
    position: relative;
    top: 0;
    right: 0;
    height:auto;
    min-height: 40px;
    width: 100%;
    background-color:#ffffff;
    padding:10px;
    box-shadow:
        0 2px 2px rgba(0,0,0,0.2),
        0 1px 5px rgba(0,0,0,0.2); 
    
    /*Texto*/
    color:#000000;
    font-size: 100%;
    
}

body{
font-family:Arial, Helvetica, sans-serif; 
font-size:13px;
}
.info, .success, .warning, .error, .validation {
border: 1px solid;
margin: 10px 0px;
padding:15px 10px 15px 50px;
background-repeat: no-repeat;
background-position: 10px center;
}
.info {
color: #00529B;
background-color: #BDE5F8;
background-image: url('info.png');
}
.success {
color: #4F8A10;
background-color: #DFF2BF;
background-image:url('success.png');
}
.warning {
color: #9F6000;
background-color: #FEEFB3;
background-image: url('warning.png');
}
.error {
color: #D8000C;
background-color: #FFBABA;
background-image: url('error.png');
}

#footer {	
    /*Caixa*/
    position: fixed;
    bottom: 0;
    right: 0;
    height:20px;
    width: 100%;
    background-color:#ffffff;
    text-align: center;
    box-shadow:
        0 -2px 2px rgba(0,0,0,0.2),
        0 -1px 5px rgba(0,0,0,0.2); 
    
    /*Texto*/
    color:#000000;
    font-size: 100%;
    
}


.form-2 {
    /* Size and position */
    margin: auto;
    width: 700px;
    height: 350px;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;

/*     width: auto; */
/*     margin: 10px auto 3px; */
/*     max-width:700px; */
    padding: 10px 40px 10px 40px;
    display:block;

    /* Styles */
    background: rgb(161 , 201 , 193);
    border-radius: 4px;
    color: #7e7975;
    box-shadow:
        0 5px 5px rgba(0,0,0,0.2),        
        0 3px 10px rgba(0,0,0,0.2); 
}



.form-2 h1 {
    font-size: 15px;
    font-weight: bold;
    color: #bdb5aa;
    padding-bottom: 8px;
    text-shadow: 0 2px 0 rgba(255,255,255,0.8);
}

.form-2 h1 .log-in,
.form-2 h1 .sign-up {
    display: inline-block;
    text-transform: uppercase;
}

.form-2 h1 .log-in {
    color: #6c6763;
    font-size:30px;
    font-family: 'Lato', Calibri, Arial, sans-serif;
    padding-right: 2px;
}

.form-2 h1 .sign-up {
    color: #ffb347;
    padding-left: 2px;
}

.form-2 .float {
    width: 50%;
    float: left;
    padding-left: 15px;
    padding-top: 15px;
}

.form-2 .float2 {
    width: 50%;
    float: left;
    text-align:justify;
    font-size: 12px;
    padding-top: 15px;
    padding-right: 15px;
    border-right: 2px solid rgba(255,255,255,1);
}

.form-2 .float:first-of-type {
    padding-right: 5px;
}

.form-2 .float:last-of-type {
    padding-left: 5px;
}

.form-2 .text02 {
    display: block;
    padding: 0 0 5px 2px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 11px;
}

.form-2 label {
    display: block;
    padding: 0 0 5px 2px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    font-size: 11px;
}



.form-2 label i {
    margin-right: 5px; /* Gap between icon and text */
    display: inline-block;
    width: 10px;
}

.form-2 input[type=text],
.form-2 input[type=password] {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    display: block;
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    border: 3px solid #ebe6e2;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.form-2 input[type=text]:hover,
.form-2 input[type=password]:hover {
    border-color: #CCC;
}

.form-2 label:hover ~ input {
    border-color: #CCC;
}

.form-2 input[type=text]:focus,
.form-2 input[type=password]:focus {
    border-color: #BBB;
    outline: none; /* Remove Chrome's outline */
}

.form-2 input[type=submit],
.form-2 .log-twitter {
    /* Size and position */
    width: 30%;
    height: 38px;
    
    float: right;
    position: relative;

    /* Styles */
    box-shadow: inset 0 1px rgba(255,255,255,0.3);
    border-radius: 3px;
    cursor: pointer;

    /* Font styles */
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 14px;
    line-height: 38px; /* Same as height */
    text-align: center;
    font-weight: bold;
}

.form-2 input[type=submit] {
    margin-left: 1%;
    background: #fbd568; /* Fallback */
    background: -moz-linear-gradient(#fbd568, #ffb347);
    background: -ms-linear-gradient(#fbd568, #ffb347);
    background: -o-linear-gradient(#fbd568, #ffb347);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbd568), to(#ffb347));
    background: -webkit-linear-gradient(#fbd568, #ffb347);
    background: linear-gradient(#fbd568, #ffb347);
    border: 1px solid #f4ab4c;
    color: #996319;
    text-shadow: 0 1px rgba(255,255,255,0.3);
}

.form-2 .log-twitter {
    margin-right: 1%;
    background: #34a5cf; /* Fallback */
    background: -moz-linear-gradient(#34a5cf, #2a8ac4);
    background: -ms-linear-gradient(#34a5cf, #2a8ac4);
    background: -o-linear-gradient(#34a5cf, #2a8ac4);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#34a5cf), to(#2a8ac4));
    background: -webkit-linear-gradient(#34a5cf, #2a8ac4);
    background: linear-gradient(#34a5cf, #2a8ac4);
    border: 1px solid #2b8bc7;
    color: #ffffff;
    text-shadow: 0 -1px rgba(0,0,0,0.3);
    text-decoration: none;
}

.form-2 input[type=submit]:hover,
.form-2 .log-twitter:hover {
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.3), 
        inset 0 20px 40px rgba(255,255,255,0.15);
}

.form-2 input[type=submit]:active,
.form-2 .log-twitter:active{
    top: 1px;
}

/* Fallback fro broswers that don't support box shadows */
.no-boxshadow .form-2 input[type=submit]:hover {
    background: #ffb347;
}

.no-boxshadow .form-2 .log-twitter:hover {
    background: #2a8ac4;
}

.form-2 p:last-of-type {
    clear: both;
}

.form-2 .opt {
    text-align: right;
    margin-right: 3px;
}

body {
	padding-top:70px;
}

.height-400 {
	height: 400px;
}

/* responsive text queries */
@media screen and (max-width: 992px) {
  p,.btn,input,div,span,h4 {
    font-size: 95%;
  }
  h1 {
    font-size: 24px;  
  }
  h2 {
    font-size: 22px;  
  }
  h3 {
    font-size: 18px;  
  }
  h6 {
    font-size: 18px;  
  }
}

@media screen and (max-width: 768px) {
  p,.btn,input,div,span,h4 {
    font-size: 90%;
  }
  h1 {
    font-size: 20px;  
  }
  h2 {
    font-size: 18px;  
  }
  h3 {
    font-size: 16px;  
  }
  h6 {
    font-size: 16px;  
  }
}


@media screen and (max-width: 500px) {
  p,.btn,input,div,span,h4 {
    font-size: 80%;
  }
  h1 {
    font-size: 15px;  
  }
  h2 {
    font-size: 12px;  
  }
  h3 {
    font-size: 16px;  
  }
  h6 {
    font-size: 12px;  
  }
}


@media screen and (max-width: 1280px) {
	s {
		display: none;
	}
}
