:root{
    --cor1:     #0E2E3F;
    --cor2:   #0D384E;
    --cor3:   #104866;
    --cor4: #104866;
    --cor5:  #71CBF4;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background: #dfdfdf;
}

.container{
    max-width: 1200px;
}

.link__href-1{
    color: white;
    text-decoration: none;
}

.link__href-1:hover{
    text-decoration: underline;
    color: white;
}

/* HEADER */
header{
    background: var(--cor1);
    padding: 15px 0 15px 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.div__body-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.img__logotipo-header{
    max-height: 20px;
    cursor: pointer;

}

/* TELA PRETA */
.div__body-shadow{
    position: fixed;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.show--div__body-shadow{
    opacity: 1;
    visibility: visible;
}

/* MENU LATERAL */
.div__sidebar{
    position: fixed;
    bottom: 0;
    left: -300px;
    top: 0;
    width: 250px;
    background: var(--cor1);
    z-index: 11;
    color: white;
    padding: 20px;
    overflow: auto;
}

.show--div__sidebar{
    left: 0;
    transition: left .5s ease-in-out;
}

.div__close-button-sidebar{
    display: flex;
    justify-content: space-between;
}

.img__logotipo-sidebar{
    max-height: 15px;
    cursor: pointer;
    margin-top: 1px;
}

.div__division-areas-menu{
    background: var(--cor2);
    padding: 10px 20px;
    border-radius: 10px;
    transition: all .3s;
    position: relative;
    width: 100%;
}

.div__menu-sidebar{
    border-radius: 10px;
    transition: all .3s;
    display: none;
    margin-top: 10px;
    position: relative;
}

.div__menu-sidebar:hover{
}

.div__division-areas-menu:hover .div__menu-sidebar {
    display: block;
}
.div__division-areas-menu {
    position: relative;  /* Importante para o absolute do menu funcionar */
    display: inline-block;
}

#alert{
    max-width: 400px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    right: -400px;
    transition: right .3s ease-in-out;
}

.div__body-form-1{
    border: 1px solid #d8d8d8;
    padding: 60px 30px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.20) 0px 5px 15px;
    background: white;

    & span{
    }

    & hr{
        border: none;
        border-top: 1px solid black;
    }
}

.flex{
    display:flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}





















































