
input[type=submit] {
    background: #4A94DD;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 0 none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input:focus {
    background: #f7f7f7;
    transition: 0.2s ease;
    outline: none;
}

input[type=submit]:hover {
    background: #4489CC;
}

.select-wrapper:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #666;
    position: absolute;
    right: 14px;
    top: 45%;
    pointer-events: none;
}