.modalContainer {
    background-color: white;
    width: 100%;
    min-width: 300px;
    height: 100vh;
    border-radius: 25px;
    z-index: 0  ;
}

.modalContent {
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: white;
}

.modalForm {
    width: 75%;
    min-width: 300px;
    margin-top: 50px;
}

.modalLista {
    width: 100%;
}

.tituloModal {
    width: 100%;
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 20px;
}

.botaoSairModal{
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.botaoSairModal > span {
    cursor: pointer;
    background-color: red;
    color: white;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
}

.lightHover:hover {
    background-color: #444444 !important;
    cursor: pointer;
}

.darkHover:hover {
    background-color: #dddddd !important;
    cursor: pointer;
}