:root {
  --cor-fundo: #ffffff;
  --cor-texto: #111111;
  --cor-texto2: rgb(86, 85, 85);
  --cor-link: #044786;
  --cor-indicador: #615b5b;
  --cor-svg: invert(0);
  --cor-linhas: 1px solid rgb(197, 190, 190);
  --realce-imagens: drop-shadow(0 0 0 rgba(255, 255, 255, 0.500));
}

:root[data-theme="dark"] {
    --cor-fundo: #282828;
    --cor-texto: #e0e0e0;
    --cor-texto2: #e0e0e0;
    --cor-indicador: #c9c8c8;
    --cor-link: #80BFFF; 
    --cor-svg: invert(1);
    --cor-linhas: 1px solid rgb(90, 90, 90);
    --realce-imagens: drop-shadow(0 0 1px rgba(255, 255, 255, 0.500));
  }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --cor-fundo: #282828;
    --cor-texto: #e0e0e0;
    --cor-texto2: #e0e0e0;
    --cor-indicador: #c9c8c8;
    --cor-link: #80BFFF; 
    --cor-svg: invert(1);
    --cor-linhas: 1px solid rgb(90, 90, 90);
    --realce-imagens: drop-shadow(0 0 1px rgba(255, 255, 255, 0.500));
  }
}

html, body{
    -webkit-text-size-adjust: 100%;
    width: 100%;
    background-color: var(--cor-fundo);
    overflow-x: clip;
    font-family: Arial;
    margin: 0;
    padding: 0;
    border: 0;
}
#corpo{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    padding-top: 20px;
}
img{
    width: 70px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: var(--realce-imagens);
}
#container-index{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 4vh;
    width: 70%;
    height: 60%;   
}
#grupo{
    border: 0;
    border-bottom: 1px;
    border-style: solid;
    border-color: rgb(156, 155, 155);
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    padding: 10px;
    margin-top: 10px;
    font-size: 15px;
    text-align: center;
    width: 90%;
    outline: none;
}
#grupo::placeholder{
    color: var(--cor-texto2);
}
#grupo:focus,
#grupo:hover{
    border-color: #1c85e7;
    outline: none;
}
#empresa{
    border-style: solid;
    border-radius: 20px;
    padding: 4px;
    box-shadow: 0px 0px 20px -10px;
    border-color: rgb(204, 204, 204);
    margin-bottom: 30px;
    color: rgb(105, 104, 104);
    text-align: center;
    font-size: 15px;
}
.button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10%;
    padding: 5px;
    background-color: #044786 ;
    border-color: #044786 ;
    border-radius: 10px;
    border-style: solid;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: 0.4s;
}
.button:hover{
    background-color: #1c85e7;
    border-color: #1c85e7;
}

@media (min-width: 600px) {
    img{
        width: 70px;
    }
    #corpo{
        width: 400px;
        height: 400px;
    }
}

@media (min-width: 1000px) {
    #corpo{
        width: 300px;
        height: 300px;
    }
}
