.fundo{
    background-image: url("../img/fundo.png");
    /*background-color: #0a53be;*/
    height: calc(100vh - 60px);
    margin:0;
    padding: 0;
    background-size: cover;
    background-position: center; /* Opcional: centralizar a imagem */
    background-repeat: no-repeat;
}

.error-message {
    color: red;
    font-size: 14px;
}

.error-message::before {
    content: "Erro: ";
    font-weight: bold;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Cor de fundo transparente */
    z-index: 9999; /* Valor alto para garantir que fique sobreposto a outros elementos */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-message {
    color: white;
    font-size: 24px;
}
