.form-inline input[type="text"] {
    position:absolute;
    left:70%;
    top:2.5%;
    width:20%;
    background-color:white;
    color:grey;
}
.form-inline button[type="submit"] {
    position:absolute;
    left:90%;
    top:2.5%;
    width:5%;
    color:white;
}
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 0px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: lightblue; 
    border-radius: 40px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: blue; 
}
body {
    font-family: "Verdana";
    font-size: 18px;
    background-color: lightgray;
}