body{
    background: #f2f2f2;
}

.search {
    width: 100%;
    position: relative;
    display: flex;
    border-radius: 6px 6px 6px 6px;
}

.searchTerm {
    width: 100%;
    border: 3px solid #029676;
    border-right: none;
	font-size: 26px;
    padding: 5px 0px 5px 5px;
    height: 48px;
    border-radius: 6px 0 0 6px;
    outline: none;
    color: #000;
}

.searchTerm:focus{
    color: #000;
}

.searchButton {
    position: relative;
    width: 80px;
    height: 64px;
    border: 3px solid #029676;
    float: left;
    background: #029676;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 0 6px 6px 0;
    padding: 5px 5px 5px 0px;
    margin-left: -1px;
    cursor: pointer;
    font-size: 40px;
}
.searchButton:active{
    background: #fff;
    color: #029676;

}

/*Resize the wrap to see the search bar change!*/
.wrap{
    width: 356px;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}

#icon {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);

  }
