.search-form {
    display: flex;
    /* max-width: 400px; */
    margin: 1rem auto;
}

.search-form input {
    flex: 1;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.search-form input:focus {
    border-color: #666;
}

.search-btn{
    padding: 10px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    background: #111;
    color: #fff;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
}

.search-form button:hover {
    background: #333;
}

.icon {
    /* filter: brightness(0) invert(1); */
    width: 1.3rem;
    height: 1.3rem;
    display: inline-block;
    pointer-events: none;
}
