body{
    padding: 0 15px;
    margin: 0;
    box-sizing: border-box;
    background-image: url('../images/bg-login.jpg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-color: #ECECFB;
    background-size: cover;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    height: 100vh;
}

body:before{
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    z-index: 0;
    background-color: #215A7C;
    mix-blend-mode: multiply;
    opacity: 0.71;
}

form{
    float: right;
    margin-top: 45px;
    margin-right: 50px;
    width: 385px;
    padding: 30px 35px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    z-index: 1;
    position: relative;
    box-shadow: 0 0 50px #000;
}

form p{
    margin-bottom: 13px;
}

form input[type=text]{
    width: 100%;
    height: 52px;
    padding: 15px;
    box-sizing: border-box;
    border:1px solid #bbb;
    border-radius: 5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    font-size: 14px;
    color:#333;
    outline: none;
}

form input::placeholder{
    font-size: 14px;
    color:#666;
}

.botoes-form{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.botoes-form p{
    margin:0;
}

.botoes-form a{
    text-decoration: none;
    color:#457244;
    font-size: 14px;
    transition: 0.3s all ease-out;
    -webkit-transition: 0.3s all ease-out;
    -moz-transition: 0.3s all ease-out;
}

.botoes-form a:hover{
    color: #215A7C;
}

form input[type=submit]{
    width: 155px;
    height: 52px;
    border:none;
    background-color: #215A7C;
    color:#fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    transition: 0.3s all ease-out;
    -webkit-transition: 0.3s all ease-out;
    -moz-transition: 0.3s all ease-out;
}

form input[type=submit]:hover{
    cursor: pointer;
    background-color: #457344;
}

.logo{
    width: 279px;
    height: 67px;
    background-image: url('../images/logo.png');
    background-position: top center;
    background-repeat: no-repeat;
    margin: 0 auto 35px;
}

/* RESPONSIVO */
@media (max-width:768px){
    body{
        padding-top: 20px;
    }

    form{
        float: none;
        margin: 0px auto;
        box-shadow: 0 0 50px rgba(0,0,0,0.46);
        background-color: rgba(255,255,255,0.9);
    }

    .botoes-form{
        flex-direction: column;
    }

    .botoes-form p{
        width: 100%;
    }

    form input[type=submit]{
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width:480px){
    form{
        width: 100%;
    }

    .logo{
        width: 100%;
        background-position: center center;
        background-size: contain;
    }
}