.container-search {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-search {
    position: relative;
    text-align: center;
}

.content-search::before {
    font-size: 1.10rem;
    position: absolute;
    top: 50%;
    right: 13%;
    transform: translateY(-50%);
}

.content-search input {
    border-radius: 5px;
    padding: 10px 30px 10px 8px;
    border: 1px solid #019df4;
    width: 80%;
}

.text-error {
    text-align: center;
    margin: 20px 0;
}

@media screen and (min-width:768px) {
    .content-search input {
        width: 100%;
    }

    .content-search::before {
        right: 8px;
    }
}