.search {
    display: flex;
    flex-direction: row;
    background-color: #FFFFFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.searchbar {
    height: 50px;
    padding: 15px 15px 10px 15px;
    border: none;
    border-bottom: 5px solid #FFFFFF;
}

input {
    transition-duration: 0.2s;
}

input[type="text"] {
    height: 50px;
    border: none;
    width: 50vw;
    font-family: "Raleway", sans-serif;
    font-size: 2em;
}

.reset {
    height: 80px;
    width: 80px;
    padding: 15px 15px 10px 15px;
    background: url("icons/black-delete-50.png") no-repeat center;
}

.submit {
    height: 80px;
    width: 80px;
    padding: 15px 15px 10px 15px;
    background: url("icons/black-search-50.png") no-repeat center;
}

input:hover {
    border-bottom: 5px solid #DDDDDD;
}

input:focus {
    border-bottom: 5px solid #DDDDDD;
}
