:root {
    --cor-fundoCor: rgb(226, 230, 35);
    --cor-texto: rgb(51, 51, 51);
    --cor-fundoPadrao: #fefefe;

}
*{
    font-family: sans-serif;
    /* font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif ; */
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}
header{
    /* background-color: var(--cor-fundoCor); */
    background-color: #FFB9B9; 
    background-color: #c5455e; 
    background-color: #8C1C13; 
    width: 100%;
    height: 8vh;
    color: white;
    text-shadow: 1px 1px 1px grey;
}
.main-body .menu{
    min-height: 92vh;
    width: 20vw;
    border-right: 1px solid black;
    background-color: #FFF8E7;
}
.main-body .menu .opt{
    background-color: #FFF3D6;
    color: #4A1E1E;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    height: 50px;
    margin-top: 5px;
    box-shadow: 1px 1px 3px 1px grey;
}
header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
nav a,
nav div,
nav button {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    border-right: 1px solid black;
}
h4{
    text-align: center;
    margin-bottom: 30px;
}
.menu .opt a.active {
    font-weight: bold;
    color: #007BFF; 
    pointer-events: none; 
}
.menu .opt a{
    color: black;
}
.modal{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(32,32,32,0.5);
    justify-content: center;
    align-items: center;
    display: none;
}

.modalBody{
    width: 400px;
    background-color: gainsboro;
    padding: 20px;
    font-size: 1.5em;
}
.modalBody .buttonsFormWorker{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.modalBody .buttonsFormWorker button{
    padding: 10px;
}
#switchColor:hover{
    cursor: pointer;
}

main{
    width: 100%;
}
.tituloPage{
    text-align: center;
    padding: 20px;   
}
.main-body{
    display: flex;
    width: 100%;
}
.main-body .content{
   /*  margin-left: 20vw;    */
}

.main-body .menu .opt:hover{
    cursor: pointer;
    background-color: #FEFFD3;
}
.main-body .content{
    width: 80vw;
    background-color: var(--cor-fundoPadrao);
}
.form-message {
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
}

.form-message.sucesso {
    background: #e6ffed;
    color: #256029;
    border: 1px solid #b4e2c0;
}

.form-message.erro {
    background: #ffe6e6;
    color: #7a1f1f;
    border: 1px solid #e2b4b4;
}
