#searchform-ressource {
    width: 100%;
    display: flex;
    
}

#searchform-ressource * {
    font-family: "Montserrat", sans-serif;
}

#searchform-ressource .search-field {
    border: 1px solid #002C86;
    color: #002C86;
    background: white;
    border-radius: 0;
    width: 40%;
    margin-right: 10px;
    padding: 10px;
}

#searchform-ressource .search-field::placeholder {
    color: #002C86;
    opacity: 1;
}

#searchform-ressource .thematique-filtre {
    border: 1px solid #002C86;
    color: #002C86;
    background: white;
    border-radius: 0;
    width: 30%;
    margin-right: 10px;
    padding: 10px;
}

#searchform-ressource .submit {
    background: #002C86;
    border: none;
    color: white;
    text-transform: uppercase;
    border-radius: 0;
    width: 30%;
    padding: 10px;
}

@media screen and (max-width: 900px) {
    #searchform-ressource {
        flex-wrap: wrap;
        
    }
    
    #searchform-ressource .search-field,  #searchform-ressource .thematique-filtre, #searchform-ressource .submit {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
}