form.searchBar{
    position: absolute;
    right:0;
    margin-right: 1%;
    margin-top:1.5%;
    margin-bottom:auto;
    padding:0;
    display: flex;
    flex-direction: row;
    width: 20%;
}

.searchBar::after{
    content: "";
    clear:both;
    display: table;
}

.material-icons.md-18 { font-size: 18px; }

.searchBar input{
    padding: 5px;
    margin: 0;
    font-size: 12px;
    border: 1px solid rgb(180, 76, 76);
    border-radius: 10px;
    width:80%;
    background-color: rgb(253, 235, 235);
    float: right;
}
.searchBar button{
    float: right;
    width: 20%;
    padding:5px;
    margin:0;
    background-color: rgb(253, 235, 235);
    font-size: 12px;
    border: 1px solid rgb(180, 76, 76);
    border-radius: 10px;
    cursor: pointer;
}
.searchBar button:hover{
    background-color: rgb(196, 143, 143);
}