
.modalLogin{
    z-index: 12;
    display: none;
    padding-top: 50px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}
.contentModal{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 25px;
    margin: auto;
    background-color: #fff;
    position: relative;
    padding: 0;
    outline: 0;
    width: 600px;
    padding: 0 25px 0 25px;
}
.contentModal .close{
    display: flex;
    justify-content: end;
}
.close span{
    font-size: 50px;
}
.formLogin{
    display: flex;
    justify-content: center;
}
.contentModal form{
    display: flex;
    flex-direction: column;
    width: 70%;
}
.pSenha, .contentModal form button{
    margin-top: 20px;
}
.contentModal form input, select{
    padding: 10px 10px;
    border-radius: 10px;
    font-size: 20px;
}
.contentModal form button{
    background: #39940d;
    color: white;
    border: none;
    font-size: 20px;
    border-radius: 10px;
    padding: 15px;
}
.contentModal form a{
    text-align: end;
    text-decoration: revert;
}
.contentModal img{
    width: 100%;
}
@media (max-width:992px){
    .close span{
        margin-right: 20px;
    }
    .contentModal form{
        width: 80%;
    }
    .modalLogin{
        padding-top: 0;
    }
    .contentModal{
        width: 100%;
        height: 100%;
        padding: 0;
        border-radius: 0;
    }
}