* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: "Google Sans Flex", sans-serif;
    transition: all 0.8s ease;
}

/*DIV FLEX*/
.flex, .modal{
    display: flex;
    justify-content: center;
    align-items: center;
}

/*AVISO AO USUÁRIO*/
.aviso {
    position: absolute;
    top: 50px;
    opacity: 0;
    z-index: -99;
    padding: 10px;
    border: 2px solid #f5f5f5;
    border-radius: 8px;
    transform: translateY(10px);
    color: #f5f5f5;
    text-align: center;
}

/*LOGIN*/
.containerLogin {
    height: 100vh;
    width: 100%;
    background-image: url(../imagens/background.png);
    background-position: center;
    background-size: cover;
}
.formLogin {
    background-color: #f5f5f5;
    backdrop-filter: blur(3px);
    border: 1px solid #bdbdbd;
    padding: 20px;
    gap: 20px;
    flex-direction: column;
    border-radius: 8px;
}
.logoLogin {
    height: 120px;
    border-radius: 50%;
}
.inputs{
    border-radius: 8px;
    outline: none;
    border: 1px solid #bdbdbd;
    padding: 8px;
    width: 300px;
    background-color: #f5f5f5;
    color: #0f0f0f;
}

/*BOTÕES CORINGAS*/
.btnBlue, .btnRed{
    width: 100%;
    color: #f5f5f5;
    background-color: #192b9b;
    border-radius: 8px;
    border: 1px solid transparent;
    padding: 8px;
    cursor: pointer;
    font-weight: 400;

    &:hover {
        color: #192b9b;
        border: 1px solid #192b9b;
        background-color: #f5f5f5;
    }
}
.btnRed{
    background-color: #ff1e24;
    color: #f5f5f5;
    &:hover {
        color: #ff1e24;
        border: 1px solid #ff1e24;
        background-color: #f5f5f5;
    }
}
.miniBotao{
    border-radius: 10px;
    padding: 8px;
    color: #192a9b;
    cursor: pointer;
    border: 1px solid #192b9b;

    & svg{
        height: 20px;
        color: #192a9b;
    }
    &:hover{
        color: #2d44d3;
        border: 1px solid #2d44d3;
    }
}
.modal {
    height: 100vh;
    width: 100%;
    background-color: #0f0f0f54;
    backdrop-filter: blur(5px);
    position: absolute;
    z-index: +98;   
    display: none;

    & span {
        color: #192b9b;
        font-weight: 600;
        text-align: center;
    }
}
.formProduto{
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0px 0px 10px #0f0f0f;

    & h1 {
        font-family: "Outfit", sans-serif;
        font-size: 20px;
        font-weight: 500;
        color: #192b9b;
    }
}
.menuModal {
    padding: 0px 0px 3px 0px;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #bdbdbd;

    & svg{
        color: #ff1e24;
        cursor: pointer;
    }
}
.containerInputs{
    width: 100%;
    justify-content: space-between;
    gap: 15px;
}

/*ESTRUTURA VISUAL INICIAL*/
.container{
    height: 100vh;
    background-color: #f5f5f5;
    align-items: start;
}
.painel{
    display: grid;
    grid-template: auto / auto;
    width: 1500px;
    justify-content: center;
}
.menu{
    padding: 8px;
    width: 1500px;
    border-bottom: 1px solid #bdbdbd;
    justify-content: space-between;

    & .logo{
        height: 70px;
    }
    & h1{
        color: #192b9b;
        font-size: 20px;
        font-weight: 400;
    }
}

.painel-interno{
    padding: 15px 0px 0px 0px;
    width: 100%;
    
    & h2{
        color: #0f0f0f;
        font-family: "Outfit", sans-serif;
        font-weight: 600;
        margin-bottom: 10px;
    }
}
.empresas, .dados{
    flex-direction: column;
    padding: 8px;
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    gap: 5px;
}
.empresa{
    width: 100%;
    padding: 8px;
    display: grid;
    grid-template-columns: 200px 50px auto auto;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    border-left: 10px solid #192a9b;
    background-color: white;

    &:hover{
        border-left: 10px solid #2d44d3;
    }
}
.editores {
    justify-content: space-evenly;

    & img {
        border-radius: 50%;
        padding: 3px;
        cursor: pointer;
        border: 1px solid transparent;

        &.edit:hover {
            border: 1px solid #192b9b;
        }
        &.bind:hover {
            border: 1px solid #ff1e24;
        }
    }
}

/*DADOS*/
.dados{
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
    
    & p{
        padding: 8px;
        background-color: #192a9b;
        color: #f5f5f5;
        border-radius: 8px;
        letter-spacing: 1px;
    }
}