*,
::before,
::after {
	box-sizing: border-box;
}

/**********************************/
/* 0. Variáveis
/* 1. Estilos gerais
/* 2. Navbar
/* 3. Loading
/* 4. Container
/* 5. State Select
/* 6. Status
/* 7. Data Box
/* 8. Footer
/**********************************/

/**********************************/
/* 0. Variáveis
/**********************************/

[data-theme="light"] {
    --clr-background-white:rgba(255, 255, 255, 0.3);
    --clr-background-dark:rgba(0, 0, 0, 0.8);
	--clr-background-main:rgba(0, 0, 0, 0.25);
	--clr-font:white;
    --clr-card:#FEE7E7;
    --clr-switch-track:#AABBCC;
    --clr-link:#3333FF;

    --clr-confirmed:#D21212;
    --clr-deaths:#223344;
    --clr-vaccinated-1:#0000C7;
    --clr-vaccinated-2:#117711;

	--ff: Arial, sans-serif;
    --ts-caption: 600 1.8rem/1 var(--ff);
    --ts-normal-text: 400 1.6rem/1.4 var(--ff);
    --ts-normal-semibold: 600 1.6rem/1.4 var(--ff);

    --transition: all 0.2s linear;
    --shadow-card: 5px 5px 30px 0 rgba(51, 51, 51, 20%);
}

/**********************************/
/* 1. Estilos gerais
/**********************************/

html {
    font-size: 140%;
    font-family: var(--ff);
    color: var(--clr-font);
}

body {
    background-color: var(--clr-background-main);
    font-family: var(--ff);
    background-image: url("/imagens/background.jpg");
    background-position: center;
    background-size: cover;
    height: 100vh;
}

/**********************************/
/* 2. Pagina
/**********************************/
.header {
    background-color: var(--clr-background-dark);
    height: 2vh;
    margin-bottom: 0;
}

.main {
    display: flex;
    flex-direction: column;
    height: 92vh;
    justify-content: space-between;
}

.botoesMain {
    background-color: var(--clr-background-dark);
    display: flex;
    justify-content: center;
    padding: 2vh 0;
    text-align: center;
}

.titulo {
    background-color: var(--clr-background-dark);
    color: var(--clr-font);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/**********************************/
/* 3. Usuario
/**********************************/

.formulario {
    display: flex;
    justify-content: center;
    padding: 2vh 0;
    text-align: left;
    color: white;
    position: relative; /* Certifique-se de que o formulário é o contexto pai relativo */
}
.formulario label {
    text-decoration: none; /* Remove o sublinhado padrão */
    font-weight: 500; /* Peso intermediário da fonte */
    font-size: 1rem; /* Tamanho da fonte */
    text-shadow: 1px 1px 3px #000000, -1px -1px 3px #000000, 1px -1px 3px #000000, -1px 1px 3px #000000; /* Contorno grosso com múltiplas sombras */
}

.icone {
    position: relative; /* Define o contexto de posicionamento para o ícone */
}

.icone i {
    color: darkgray;
    cursor: pointer;
    position: absolute;
    font-size: 3vh;
    padding: 0.1vh;
    right: 10px; /* Ajusta a distância do limite direito do campo de senha */
    top: 50%; /* Posiciona o ícone verticalmente no meio do campo */
    transform: translateY(-50%); /* Ajuste para centralização vertical perfeita */
}

.resposta {
    color: red;
    display: flex;
    justify-content: center;
    text-align: center;
}
.link {
    display: flex;
    justify-content: center;
    text-align: center;
}

.link a {
    color: white;
    text-decoration: none; /* Remove o sublinhado padrão */
    font-weight: 500; /* Peso intermediário da fonte */
    font-size: 1rem; /* Tamanho da fonte */
    text-shadow: 1px 1px 3px #000000, -1px -1px 3px #000000, 1px -1px 3px #000000, -1px 1px 3px #000000; /* Contorno grosso com múltiplas sombras */
    transition: color 0.3s ease, text-shadow 0.3s ease; /* Transição suave para interatividade */
}

.link a:hover {
    color: #ffffff; /* Muda para branco ao passar o mouse para maior visibilidade */
    border-bottom: 1px solid #ffffff; /* Adiciona uma linha fina ao passar o mouse */
    text-shadow: 1px 1px 5px #ffffff, -1px -1px 5px #ffffff, 1px -1px 5px #ffffff, -1px 1px 5px #ffffff; /* Realça o contorno no hover com sombra mais grossa */
}

/**********************************/
/* 4. Modal
/**********************************/

.modal-body p{
    text-align: justify;
}

.grandezas{
    text-align: center;
    list-style: none;
}


/**********************************/
/* 5. Erro
/**********************************/

.die {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
    color: #343a40;
}
.die .container {
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.die .header, .email-verificado .footer {
    width: 100%;
    background-color: #343a40;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}
.die .btn-danger {
    background-color: #dc3545;
    border: none;
}
.die .btn-danger:hover {
    background-color: #c82333;
}

/**********************************/
/* 6. Graficos
/**********************************/



/**********************************/
/* 7. Data Box
/**********************************/



/**********************************/
/* 8. Footer
/**********************************/
.footer {
    background-color: var(--clr-background-dark);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    align-items: center;
    color:var(--clr-font);
    display: flex;
    height: 6vh;
    justify-content: space-evenly;
    margin-bottom: 0;
}
.tooter p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
/**********************************/
/* 9. Mobile
/**********************************/

/* Dimensão do PC de Edson */
@media screen and (max-width: 1528px) {

    html {
        font-size: 135%;
    }
}

/* Dimensão do teste no PC de Edson */
@media screen and (max-width: 1425px) {

}

/* Dimensão do Notebook de Edson */
@media screen and (max-width: 1366px) {
    html {
        font-size: 130%;
    }
}

/* Dimensão do teste no PC de Edson */
@media screen and (max-width: 1280px) {

}

/* Dimensão do teste no PC de Edson */
@media screen and (max-width: 1139px) {
    html {
        font-size: 125%;
    }
}

/* Dimensão do teste no PC de Edson */
@media screen and (max-width: 1020px) {
    .header{
       display: none;
    }
    .footer {
        background-color: var(--clr-background-white);
        visibility: hidden;
    }

    .main{
        display: flex;
        flex-direction: column;
        height: 92vh;
        justify-content: flex-start;
    }
    
    .botoesMain {
        background-color: var(--clr-background-white);
        flex-direction: column;
        align-items: center; /* Centraliza os botões */
    }
    
    .btn-group {
        display: flex;
        flex-direction: column;
        width: 100%; /* Para os botões ocuparem a largura total */
    }
    
    .btn-group .btn {
        margin: 5px 0; /* Adiciona margem entre os botões */
        width: 100%; /* Ajuste para que os botões não ocupem toda a largura */
    }
    
    .btn-group .btn:first-child {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    
    .btn-group .btn:last-child {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }
}

/* Dimensão do teste no PC de Edson */
@media screen and (max-width: 900px) {
    html {
        font-size: 120%;
    }
}

/* Dimensão do teste no PC de Edson */
@media screen and (max-width: 825px) {

}

/* Dimensão do teste no PC de Edson */
@media screen and (max-width: 760px) {
    html {
        font-size: 115%;
    }
}

/* Dimensão do teste no PC de Edson */
@media screen and (max-width: 660px) {

}

/* Dimensão do teste no PC de Edson */
@media screen and (max-width: 590px) {
    html {
        font-size: 110%;
    }
}

/* Dimensão do teste no PC de Edson */
@media screen and (max-width: 528px) {

}

/* Dimensão do teste no PC de Edson */
@media screen and (max-width: 470px) {
    html {
        font-size: 105%;
    }
}

/* Dimensão do teste no PC de Edson */
@media screen and (max-width: 425px) {

}

/* Dimensão do Celular de Edson */
@media screen and (max-width: 412px) {
    html {
        font-size: 100%;
    }
}

/* Dimensão maior que 426px */
@media screen and (min-width: 426px) {

}

