body {
    font-family: 'Roboto', Arial, sans-serif;
}

input {
    color: #FB3570;
    text-align: center;
}

.wrapper {
    width: 100%;
    max-width: 31.25rem;
    margin: 6rem auto;
}

.label {
    font-size: .625rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: +1.3px;
    margin-bottom: 1rem;
}

.searchBar {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

#searchQueryInput {
    background: 
        linear-gradient(#282828 0 0) padding-box,
        linear-gradient(to right, #9c20aa, #fb3570) border-box;
    width: 100%;
    height: 2.8rem;
    outline: none;
    border: 5px solid transparent;
    border-radius: 1.625rem;
    border-style: solid;
    border-width: 2px;
    padding: 0 3.5rem 0 1.5rem;
    font-size: 1rem;
}

#searchQuerySubmit {
    width: 3.5rem;
    height: 2.8rem;
    margin-left: -3.5rem;
    background: none;
    border: none;
    outline: none;
}

#searchQuerySubmit:hover {
    cursor: pointer;
}
