body {
    font-family: 'Mulish', sans-serif;
    background-color: #f6f6f6;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container-consulta {
    background: white;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.container-consulta img {
    max-width: 150px;
    margin-bottom: 20px;
}

.container-consulta h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0b406b;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 1.1rem;
    color: #707070;
    display: block;
    margin-bottom: 5px;
    text-align: left;
}

.form-group input {
    font-size: 1rem;
    padding: 10px;
    width: 100%;
    border: 1px solid #cacaca;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn {
    background-color: #0b406b;
    color: white;
    font-size: 1rem;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
}

.btn:hover {
    background-color: #093358;
}

@media (max-width: 768px) {
    .container-consulta {
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
}





/* Estilo do contêiner externo para centralizar o loader */
#loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* Inicialmente escondido */
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8); /* Fundo branco translúcido */
    z-index: 1000;
}

/* Estilo do círculo de carregamento */
.loader {
    border: 8px solid #f3f3f3; /* Cor de fundo */
    border-top: 8px solid #cbe8ff; /* Cor do círculo */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite; /* Animação de rotação */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/*_____________Balão Flutuante_________________*/


/* CSS para o balão flutuante */
.floating-balloon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.floating-balloon img {
    width: 40px;
    height: 40px;
    filter: invert(1); /* Se o ícone for escuro, isso o tornará branco */
}

.floating-balloon:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
