/* Search form inline layout */
.search-form {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

/* Label styling */
.search-form label {
    font-weight: normal;
    display: inline-block;
    margin-bottom: 0.5rem; /* from .form-group */
}

/* Search input */
.search-form .search-field {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Submit button */
.search-form .search-submit {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    color: #fff;
    background-color: #6c757d; /* secondary */
    border-color: #6c757d;
}

/* Button hover/focus states */
.search-form .search-submit:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.search-form .search-submit:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}