input[type=text], textarea {
    width: 100%;
    padding: 15px 20px;
    margin: 10px 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid red;
}


button,
input[type="submit"],
input[type="reset"] {
  width: 10%;
  background-color: #099ba0;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover,
input[type="submit"]:hover, 
input[type="reset"]:hover {
  background-color: #04686b;
}


#formQuery {
    border-radius: 5px;
    background-color: #b3eff1;
    padding: 20px;
}

#resQuery {
    border-radius: 5px;
    background-color: #d89fe9;
    padding: 20px;
}