

*{
    box-sizing: border-box;


}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    /*background-image:url("../../img/aula.JPG");*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/

}

.wrapper {
    margin: -60px auto;
    width: 100%;
    max-width: 1140px;
    min-height: 90vh;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.container{
    position: relative;
    width: 100%;
    max-width: 550px;
    height: auto;
    display: flex;
    background: #ffffff;
    box-shadow: 0 0 5px #999999 ;
}

#logo{
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    display: flex;
    margin-bottom: 20px;
}



.login .col-left,
.login .col-right{
    padding: 20px;
    display: flex;
}

.login .col-left{
    width: 40%;
    min-width: 0;
    /*clip-path: polygon(0 0,0% 100%, 100% 0 );*/
    background-image:url("../../img/aula.JPG");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    }


    .login .col-right{
        padding: 50px 10px;
        width: 50%;
        margin-left: 5%;
    }


    .login .login-text img{
        width: 180px;
        
    }
    .login .login-form{
        position: relative;
        width: 100%;
    }
    .login .login-form form{
        margin: 0 0 -50px;
    }
     .login .login-form h2{
         text-align: center;
         margin-bottom: 20px;
         font-weight: 200;
         background: linear-gradient(to bottom, #294CBF 0%, #0028AA 100%);
         color: white;
         border-radius: 30px;
         width: auto;
    }
    .login .login-form p{
        margin: 0 0 10px 0;
        font-size: 15px;
        text-align: left;
        color: #666666;
    } 
    
    .login .login-form p:last-child{
        margin: 0;
        margin-top: 3px;
    }

    .login .login-form label {
        display: block;
        width: 100%;
        margin-bottom: 2px;
        letter-spacing: .5px;
    }
    .login .login-form p:last-child label{
        width: 60%;
        float: left;
    }
    .login .login-form label span {
        color: #ff574e;
        padding-left: 2px;
    }
    .login .login-form input{
        display: block;
        width: 100%;
        height: 35px;
        padding: 0 10px;
        outline: none;
        border: 1px solid #cccccc;
        border-radius: 30px;
    }
    .login .login-form input:focus{
        border-color:#ff574e ;
    }
    .login .login-form button,
    .login .login-form input[type=submit]{
        display: inline-block;
        width: 100%;
        margin-top: 5px;
        color: white;
        font-size: 16px;
        letter-spacing: 1px;
        cursor: pointer;
        border: 1px solid #FC6B00;
        box-shadow: inset 0 0 0 0 #2a2a2a;
    
    }


.login .login-form button{
       font-size: 11px;
        width: auto;
        background: linear-gradient(to bottom, #294CBF 0%, #0028AA 100%);
        color: white;
        height: auto;
        border: none;
        display: inline-block;
    border-radius: 20px;

    }
    .login .login-form button span{
        color: white;

    }



.login .login-form b{
        font-size: 10px;
        width: auto;
    }
@media (max-width: 600px) {
        .login .col-right {
            padding: 60px 10px;
            width: 100%;
        }
        .login .col-left {
            display: none;
        }



}






    

