.tr-search-form{
    width:100%;
    max-width:700px;
    margin:40px auto;
}

.tr-search-form__group{
    display:flex;
    gap:12px;
}

.tr-search-form__input{
    flex:1;
    min-height:54px;
    padding:0 18px;
    border:1px solid #d8d8d8;
    border-radius:8px;
    font-size:16px;
}

.tr-search-form__input:focus{
    outline:none;
    border-color:#0d6efd;
}

.tr-search-form__button{
    min-width:150px;
}

@media(max-width:768px){

.tr-search-form__group{

flex-direction:column;

}

.tr-search-form__button{

width:100%;

}

}