:where(input[type=search]) {
    all: unset;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    border-bottom: solid 0.05rem var(--text2);

    background-color: var(--surface2);
    color: var(--text1);

    font-size: 1rem;
    font-family: monospace;

    height: 2rem;

    --user-select: text;
}

:where(input[type=search]:focus-visible) {
    box-shadow: 0 0 0 0.4rem var(--surface4), var(--shadow);
    border-radius: 0.1rem;
    outline: none;
}

:where(input[type=search])::-webkit-input-placeholder {
    color: var(--text3);
}

:where(input[type=search])::-moz-placeholder {
    color: var(--text3);
}

:where(input[type=search])::-webkit-search-cancel-button {
    appearance: none;
    -webkit-appearance: none;
}