label {
    display: flex;
    margin: 0;
}

button {
    border: none;
}

form {
    width: 100%;
}

input, select {
    flex: 1 0 auto;
    border: none;
    outline: none;
    border-radius: 1px;
    padding: 0.25rem 0.5rem;
    background-color: #f1f3f5;
    transition: 120ms ease-in-out;
    transition-property: border, color, background-color;
    border: 0.0625rem solid #A4D6E3;
    width: 100%;
    background-clip: padding-box;
    line-height: 1.125rem;
}

input:hover, select:hover {
    border-color: #00AFD7;
}

input:focus, select:focus {
    border-color: #007AB9;
}

input:-moz-ui-invalid {
    border-color: #ff6b6b;
}

input[disabled]:hover, select[disabled]:hover {
    border-color: #f1f3f5;
}

input[type=submit] {
    font-weight: bold;
}

input[type=submit]:hover {
    background-color: #00AFD7;
    color: #ffffff;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-size: 1rem;
    background-image: url(/static/svg/select.svg);
    background-repeat: no-repeat;
    background-position: right .5em top 50%, 0 0;
}

select:-moz-focusring {
    outline: none;
}

select::-ms-expand {
    display: none;
}

option {
    background-color: #ffffff;
}