.input-container {
    position: relative;
    display: flex;
    height: 2.8rem;
    width: 100%;
    margin-left: 100px;
    margin-top: -13px;
    min-width: 200px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.05);
}

.input-container input {
    height: 100%;
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgb(176 190 197);
    background-color: transparent;
    padding: 0.625rem 70px 0.625rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    color: rgb(69 90 100);
    outline: none;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-container input:focus {
    border: 1px solid rgb(236 72 153);
}

.invite-btn {
    position: absolute;
    width: 65px;
    right: 4px;
    top: 4px;
    bottom: 4px;
    z-index: 10;
    border-radius: 4px;
    /* background-color: rgb(236 72 153 ); */
    color: #fff;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
    vertical-align: middle;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    transition: 0.6s ease;
    cursor: pointer;
}

.invite-btn:hover {
    right: 2px;
    top: 2px;
    bottom: 2px;
    border-radius: 8px;
}

.input-container input:placeholder-shown ~ .invite-btn {
    pointer-events: none;
    background-color: black;
    opacity: 0.5;
}

/* --------------------------- */

.search_wrap {
    width: 500px;
    margin: 38px auto;
}

.search_wrap .search_box {
    position: relative;
    width: 500px;
    height: 60px;
}

.search_wrap .search_box .input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 18px;
}

.search_wrap .search_box .btn-search {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: #708bd2;
    z-index: 1;
    cursor: pointer;
    color: white;
    border: none;
}

.search_wrap .search_box .btn-search:hover {
    background: #708bd2;
}

.search_wrap.search_wrap_6 .search_box .input {
    border-radius: 50px;
}

.search_wrap.search_wrap_6 .search_box .btn-search {
    border-radius: 24px !important;
}

.search_wrap.search_wrap_6 .search_box .btn-search {
    width: 125px;
    height: 45px;
    top: 8px;
    right: 5px;
    border-radius: 3px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search_wrap.search_wrap_6 .search_box .input {
    padding-right: 145px;
}

::placeholder {
    color: black;
    font-weight: bold;
}

@media only screen and (max-width: 600px) {
    .search_wrap {
        width: 100%;
        margin: 45px 30px;
        padding-right: 50px;
    }

    .search_wrap .search_box {
        width: 100%;
        padding-left: 300px;
    }
}



