body{
    background: url("img/background.jpg") no-repeat;
    background-size: cover;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 20px 0px 0px;
    width: auto;
    height: 100%;
}
.container {
    width: 400px;
    max-width: 400px;
    margin: 10% auto;
}
#login {
    padding: 25px 25px 25px;
    background: #fff;
    box-shadow: 
        0px 0px 0px 5px rgba( 255,255,255,0.4 ), 
        0px 4px 20px rgba( 0,0,0,0.33 );
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: table;
    position: static;
}
#login label {
    color: #8f8f8f;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 7px;
    display: block;
}
.header{
    border-bottom: none;
    width: 300px;
    margin: 0px auto 20px auto;
}
.header img{
    border:none;
    text-align: center;
    margin: 0 auto;
	max-width:100%;
}
input[type=text], input[type=password] {
    background: #f5f5f5;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border: none;
    padding: 13px 10px;
    width: 330px;
    margin:0px auto 20px auto;
    box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.1 );
    clear: both;
}

input[type=text]:focus, input[type=password]:focus {
    background: #fff;
    box-shadow: inset 0px 0px 0px rgba( 0,0,0,0.1 );
    outline: 4px solid;
    outline-color: #2fa2cc75;
    webkit-transition: outline .10s ease-in-out;
    -o-transition: outline .10s ease-in-out;
    transition: outline .10s ease-in-out;
}
#submit {
    width: 350px;
    margin-top: 20px;
    padding: 15px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
        background: -moz-linear-gradient(
        top,
        #b9c5dd 0%,
        #a4b0cb);
    background: -webkit-gradient(
        linear, left top, left bottom, 
        from(#b9c5dd),
        to(#a4b0cb));
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 2px;
    border: 1px solid #737b8d;
    -moz-box-shadow:
        0px 5px 5px rgba(000,000,000,0.1),
        inset 0px 1px 0px rgba(255,255,255,0.5);
    -webkit-box-shadow:
        0px 5px 5px rgba(000,000,000,0.1),
        inset 0px 1px 0px rgba(255,255,255,0.5);
    box-shadow:
        0px 5px 5px rgba(000,000,000,0.1),
        inset 0px 1px 0px rgba(255,255,255,0.5);
    text-shadow:
        0px 1px 3px rgba(000,000,000,0.3),
        0px 0px 0px rgba(255,255,255,0);
    display: table;
    position: static;
    clear: both;
}

#submit:hover {
    background: -moz-linear-gradient(
        top,
        #a4b0cb 0%,
        #b9c5dd);
    background: -webkit-gradient(
        linear, left top, left bottom, 
        from(#a4b0cb),
        to(#b9c5dd));
}
.footer {
    color:#545454;
    margin: 20px auto 0px auto;
    width: 250px;
}
.footer img{
    border:none;
    width: 100%;
    margin: 0 auto;
}

@keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;} 
} 
.fadeIn { 
    animation-name: fadeIn; 
}

/* para 480px o menos */
    @media screen and (max-width:480px) {
    .container {
    width: 400px;
    max-width: 400px;
    margin: 0 auto;
    }
#login {
    padding:15px 5px 5px;
    display: table;
    position: static;
    }
input[type=text], input[type=password] {
    padding: 13px 10px;
    width: 87%;
    margin:0px 15px 15px;
    }
#submit {
    width: 92%;
    margin:0px 15px 15px;
    }
}
