@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
*{
    font-family: 'Poppins', sans-serif;
}

.container {
    box-sizing: border-box;
    width: 90%;
    margin: 20px auto;
    padding: 10px;
  }
.search-form {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px;
    background-color: rgb(86, 173, 211);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 20px;
    color: white;
}

.city-input{
    padding: 10px;
    border-radius: 10px;
    border: none;
}


#price1{
    padding: 10px;
    border-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: none;
}

#price2{
    padding: 10px;
    border-radius: 10px;
    border: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.search-form button{
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    width: 150px;
    text-align: center;
}
.search-form button:hover{
    background-color: rgb(109, 208, 250);
}

.search-form select{
    padding: 10px;
    border-radius: 10px;
    border: none;
}
 
@media (max-width: 1185px) {
    .search-form {  
        display: block;
        text-align: center;
    }

    .price-input{
        width: 70%;
    }

    #price1{
        border-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    #price2{
        border-radius: 10px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        margin-left: 34px;
    }

    .city-input{
        width: 90%;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    
    .search-form button{
        width: 100%;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    
    .search-form select{
        width: 100%;
        margin-top: 5px;
        margin-bottom: 5px;
    }
  }