/*limpar float*/
.limpar:after{
    content:'';
    display: table;
    clear: both;
}
/*começo css*/
.container{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 20px;

    position: absolute;

    background: -webkit-linear-gradient(#1036e8, #909fe5);
    background: -o-linear-gradient(#1036e8, #909fe5);
    background: -moz-linear-gradient(#1036e8,#909fe5);
    background: linear-gradient(#1036e8,#909fe5);
}
.login{
    height: 300px;
    width: 400px;
    /*background-color: ;*/

    top: 40%;
    left: 50%;
    position: absolute;
    margin-top: -100px;
    margin-left: -200px;

}
.login img{
    display: block;
    margin: 0 auto;
}
.login p{
    font-size: 40px;
    color: #031969;
    font-weight: bold;
    font-family: Bradley Hand ITC, cursive;
    text-align: center;
    padding-left: 20px;
}
.login-frm{
    height: 150px;
    width: 200px;
    margin: 0 auto;
    margin-top: 20px;

}
.login-frm a{
    color:#b6c1ef;

}
.login-frm label{
    display: block;

}
.login-frm input[type=text], input[type=password]{
    margin-bottom: 10px;
    padding: 5px;
    box-sizing: border-box;
    border: none;
    background-color: transparent;
    border-color: #6374b7;
    font-family: arial, helvetica,sans-serif;
    color: #02177c;
    width: 100%;
    display: block;
    border-bottom: 2px solid #27518c;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color:#ced9e8;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #ced9e8;
}
:-ms-input-placeholder { /* IE 10+ */
    color:#ced9e8;
}
:-moz-placeholder { /* Firefox 18- */
    color:#ced9e8;
}
.login-frm input:focus{

    outline: none;
}
.login-frm input[type=submit]{
    display: inline-block;
    padding: 5px 25px;
    border: 0;
    cursor: pointer;
    background-color: #4563f7;
    border-radius: 50px;
    margin-bottom: 10px;
    width: 100%;


    color:#011049;
}

.login-frm input[type=submit]:hover{
    color:#b5bee0;
    background-color: #5c71d6 !important
        font-family: impact, sans-serif;
    box-sizing: border-box;
    -webkit-box-shadow: -1px 0px 18px 0px rgba(0,0,0,0.19);
    -moz-box-shadow: -1px 0px 18px 0px rgba(0,0,0,0.19);
    box-shadow: -1px 0px 18px 0px rgba(0,0,0,0.19);
}

@media screen and (max-width: 768px){
    .login{
        width: 90%;
        left:53%;
        top: 130px;

    }
    .container{
        width: 100%;
    }
}
