.Search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 63px;
    max-width: 1200px;
    border: 1px solid #DADEE0;
    margin: 20px auto 36px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.Search button.carepoint-button {
    width: 229px;
    height: 63px;
    padding: 22px 35px;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.Search button.carepoint-button:hover {
    background-color: #8CAD06 !important;
    color: white;
    transition: all 0.9s ease;
    border: unset
}

.Search input {
    height: 98%;
    width: 100%;
    padding-left: 21px;
    font-size: 18px;
    border: none;
    outline: none;
}

.Search input::placeholder {
    font-size: 18px;
    color: #b9b9b9;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

}

@media(max-width:1024px) {
    .Search {
        height: 47px;
        margin-left: initial;
    }
}

@media(max-width:767px) {
    .Search {
        width: 100%;
        height: 47px;
        border-radius: 52px;
    }

    .Search input::placeholder {
        font-size: 18px;
    }

    .Search input {
        font-size: 18px;
        padding-left: 14px;
    }
}