*{margin: 0;}


.search-bar{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin: auto;
    /*height: 100vh;*/
    justify-content: center;
}


.search{
    border: none;
    background-color: rgb(157, 157, 157);
    color: #fff;
    height: 30px;
    width: 200px;
    transition: all 400ms ease-in-out;
}
.search::placeholder{
    color: #fff;
    opacity: 1;
    text-align: center;
}

.label-search{
    display: none;
}
.form-control{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}
.lupa{
    cursor: pointer;
    padding: 10px;
    border-radius: 50px;
    background-color: rgb(171, 93, 245);

    
}
.lupa:hover{
    background-color: blueviolet;
    transition: all 400ms;

}

.btn-busca{
    border: none;
    color: #fff;
    background-color: rgb(171, 93, 245);
    cursor: pointer;
    width: 70px;
    height: 32px;
    text-align: center;
}

.btn-busca:hover{
    background-color: blueviolet;
}

.btn-busca-none{
    display: none;
    border: none;
    color: transparent;
}

.search-d-none{
    width: 1px;
    border: none;
    color: transparent;
}

form#busca {
    margin: auto !important;
}


#header-form-m{
    display: none;
}
#header-form{display: block;}

@media (max-width:991px) {
    #header-form-m{display: block;}
    #header-form{display: none;}
}




