.search-empty {
    width: 424px;
    margin: 100px auto 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
.search-empty__title {
    margin: 0;
    font-size: var(--font-size-title-3);
    line-height: var(--line-height-title-3);
    color: var(--color-dark-blue);
    font-weight: 700;
}
.search-empty__btn {
    width: 100%;
}

.search-form {
    width: 424px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.search-form__input {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 40px;
    background-color: var(--color-gray-20);
    border-radius: 4px;
    border: none;
    outline: none;
    padding: 8px 48px 8px 12px;
    box-sizing: border-box;
}
.search-form__clear {
    position: absolute;
    z-index: 2;
    width: 24px;
    height: 24px;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}
.search-form__clear svg {
    width: 13px;
    height: 13px;
}

@media (max-width: 768px) {
    .search-empty {
        width: auto;
        margin-top: 67px;
        gap: 16px;
    }
    .search-empty__btn {
        width: 240px;
    }
    .search-form {
        width: 100%;
    }
}