.input-sm {
    width: 100px;
    /* Ajuste o valor conforme desejado */
}

.row-spacing {
    margin-bottom: 20px;
}

.select-sm {
    height: 28px;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
}

.icon-demo-examples {
    padding: 20px;
    margin-bottom: 20px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    /* Alteração aqui */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

.loader-message {
    color: white;
    font-size: 40px;
    /* Tamanho da mensagem */
    margin-top: 16px;
    margin-bottom: 35px;
    /* Margem inferior */
}



.banner {
    position: relative;
    height: 130px;
    background-color: #031d44;
    background-size: auto;
    background-position: center top -20px; /* Ajustando a posição vertical */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white; /* Adicionando a cor branca */
}




.banner::after {
    content: "";

    position: absolute;
    width: 100%;
    height: 100%;
}

.custom-container {
    max-width: 1750px;
    /* Altere o valor conforme necessário */
    margin-left: auto;
    margin-right: auto;
}