﻿.layout-painel-inicio {
    margin: 0px auto;
    font-family: var(--fonte);
}

/* Container com os acessos do painel */
.layout-painel-container h1 {
    color: #001E4D;
    font-weight: 400;
    font-size: 1.9em;
    margin-top: 20px;
}

.painel-container-dados {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    height: 100%;
}

/* button de acesso */
.painel-container-dados form button {
    width: 280px;
    height: 100px;
    border: 1px solid lightgray;
    border-radius: 5px;
    background-color: transparent;
    transition: 0.5s;
    cursor: pointer;
    margin-bottom: 20px;
    margin-right: 50px;
}

.painel-container-dados form button:hover {
    transition: 0.5s;
    background-color: lightgray;
}

/* Box dentro do button */
.painel-box-dados {
    margin: 10px;
    display: flex;
    align-items: center;   
    gap: 10px;
}

/* Imagem button */
.painel-form-btn-i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #035E73;
    display: flex;
    align-items: center;
    justify-content: center;
}

.painel-form-btn-i i {
    color: white;
    font-size: 2.2em;
}

/* Informações button */
.painel-form-btn-informacoes {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 5px;
    width: 200px;
}

.painel-form-btn-informacoes h5 {
    font-size: 1.4em;
    font-weight: 300;
    color: #035E73;
}

.painel-form-btn-informacoes h6 {
    font-weight: 100;
    font-size: 1.1em;
    color: #001E4D;
}

@media (max-width: 1000px) {

    .layout-painel-inicio {
        width: 100%;
        height: 92vh;
        overflow-y: auto;
    }
   
    .painel-container-dados {
        justify-content: center;
    }

}

@media (min-width: 1001px) {

    .layout-painel-inicio {
        width: 1000px;
        height: calc(100% - 20px);
    }

}