html, body{
    height: 100%;
    width:100%;

    font-family: 'Arial', sans-serif;
}


/*-------------------------------------------------LOGIN---------------------------------------*/

#container{
    background: url('/assets/imagens/ar_bg.jpg') no-repeat;
    background-size: cover;
    position:absolute;
    width: 100%;
    height: 100%;
}

#login_container{
    position: relative;
    top:50%;
    left:50%;
    margin-top: -117px;
    margin-left: -190px;
    width: 380px;
    height: 235px;
    background-color:#171717;
    border-radius: 5px;
    -webkit-box-shadow: 5px 8px 20px 3px rgba(0, 0, 0, 0.8);
    -moz-box-shadow:5px 8px 20px 3px rgba(0, 0, 0, 0.8);
    box-shadow:5px 8px 20px 3px rgba(0, 0, 0, 0.8); 
    position:relative;
   
}

#login_container p{
    font-size:16px;
    color: white;
    margin-left: 10px;
    margin-bottom:2px;
    font-weight: bold;
    display:inline-block;
    margin-top:10px;
    
}

#login_container span{
    position:absolute;
    right:12px;
    top:15px;
    font-size:11px;
    color:white;
}

#login{
    width:360px;
    height:145px;
    margin-left: 10px;
    background: -moz-linear-gradient(top,  #c1c1c1 0%, #e7e7e7 38%, #e7e7e7 38%, #fefefe 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c1c1c1), color-stop(38%,#e7e7e7), color-stop(38%,#e7e7e7), color-stop(100%,#fefefe)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #c1c1c1 0%,#e7e7e7 38%,#e7e7e7 38%,#fefefe 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #c1c1c1 0%,#e7e7e7 38%,#e7e7e7 38%,#fefefe 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #c1c1c1 0%,#e7e7e7 38%,#e7e7e7 38%,#fefefe 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #c1c1c1 0%,#e7e7e7 38%,#e7e7e7 38%,#fefefe 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c1c1c1', endColorstr='#fefefe',GradientType=0 ); /* IE6-9 */
    
    padding-top: 30px;
}

#login label{   
    display: inline-block;
    margin-right: 15px;
    margin-left:20px;
    color:#333333;
    width: 75px;
    font-weight: bold;
}

#login p:first-child{
    margin-top:25px;
}

#recuperar_pass{
    cursor:pointer;
    text-decoration: underline;
    margin-top:12px;
    margin-left:20px;
    width: 145px;
    font-size:15px;
    color: #333;
    
}

#recuperar_pass:hover{
    color:#555;  
}

#login input[type="text"], #login input[type="password"]{
    width:219px;
    height:24px;
    outline-color: #999;
    border: 1px solid #999;
    resize: none;
    margin-bottom: 20px;
}


#submeter{
    margin-right:25px;
    margin-top:-25px;
    background-color:black;
    color:#ccc;
    padding:7px 20px 5px 20px;
    float:right;
    width: 113px;
    font-weight: normal;
    font-size:14px;
    -webkit-transition-duration:  0.5s;
    -moz-transition-duration:  0.5s;
    -ms-transition-duration:  0.5s;
    transition-duration:  0.5s;   
    transition-property:background-color; 
    border:none;
    position:relative;
}

#submeter:hover{
    background-color:#333;
    
    }
    
#submeter:active{
    top:1px;
    
    }

