*{
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
}
body{
    font-family: 'Roboto';
    position: absolute;
    display: table;
    width: 100%;
    height: 100%;
}
body:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
body:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
}
.env{
    position: relative;
    z-index: 1;
    display: block;
    vertical-align: top;
    width: 100%;
    margin-top: 100px;
}
img{
    height: 70px;
    margin: 0 auto;
    display: block;
}
.env-login{
    margin: 0 auto;
    margin-top: 40px;
    width: 350px;
}
.box-login{
    float: left;
    width: 90%;
    padding: 20px 5%;
    border-radius: 10px;
    background: #fff;
    -webkit-box-shadow: 0 0 39px 0 rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 39px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 39px 0 rgba(0,0,0,0.2);
    border-radius: 4px;
}
.msg-error{
    float: left;
    width: 90%;
    padding: 10px 5%;
    background: #fef5f4;
    color: #cb0400;
    box-shadow: inset 0 0 0 1px #fe9b99;
    -webkit-box-shadow: inset 0 0 0 1px #fe9b99;
    -moz-box-shadow: inset 0 0 0 1px #fe9b99;
    -o-box-shadow: inset 0 0 0 1px #fe9b99;
}
.msg-error span{
    float: left;
    width: 100%;
}
.msg-error span:nth-of-type(1){
    font-size: 15px;
    font-weight: 900;
}
.msg-error span:nth-of-type(2){
    margin-top: 5px;
    font-size: 13px;
    font-weight: 300;
}
.msg-error span:nth-of-type(3){
    margin-top: 10px;
    font-size: 13px;
    font-weight: 900;
    font-style: italic;
}
.tempo-bloqueio{
    font-style: normal;
    color: #000;
}
.env2{
    position: relative;
    float: left;
    width: 100%;
}
.input{
    float: left;
    width: 90%;
    margin: 5px 0;
    padding: 15px 5%;
    border: 0;
    outline: 0;
    font-size: 15px;
    font-weight: 300;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    -o-box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}
.bt-entrar{
    float: left;
    width: 100%;
    margin-top: 10px;
    padding: 15px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 100;
    color: #fff;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    outline: 0;
    border-bottom: 2px solid rgba(0,0,0,0.2);
}
.bt-entrar:hover{
    background: #fff;
}
a{
    float: left;
    width: 100%;
    margin-top: 20px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 900;
    text-align: center;
}
a:hover{
    text-decoration: underline;
}
@media (max-width: 600px){
    .env{
        margin-top: 40px;
        
    }
    .env-login{
        width: 100%;
    }
    .box-login{
        width: 80%;
        padding: 20px 10%;
        border-radius: 0;
    }
}