

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}


input[type=text] {
    display: block;
    border: 0;
    border-radius: 4px;
    padding: 14px 8px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

input[type=text].centered {
    text-align: center;
}


input[type=text].search{
    display: block;
    border: 0;
    border-radius: 4px;
    width: 100%;
    font-size: 1em;
    padding: 14px 0;
    text-align: center;
    margin-bottom: 20px;
}


input[type=submit] {
    display: block;
    border: 0;
    border-radius: 4px;
    padding: 12px;
    font-size: 1em;
    width: 100%;
    background-color: rgba(0, 179, 222, 0.4);
    cursor: pointer;
    transition: background-color 0.25s ease;
}

input[type=submit]:hover {
    background-color: rgba(0, 179, 222, 0.8);
}