



.search {
    display: flex;
    gap: 40px;
    align-items: center;
    border: 1px solid #C1C1C1;
    height: 83px;
    /* width: 100%; */
    border-radius: 5px;
}

.search1, .search2 {
    padding: 8px;
    border: none;
    margin: 0 0 0 20px;
}

.line {
    width: 2px;
    height: 75px;
    background-color: #CCCCCC;
}

.search1::placeholder, .search12::placeholder {
    color: #504F4F;
}

@media (max-width:768px) {
    .line {
        display: none;
    }
    .search1, .search2 {
        padding: 8px;
        width: 90%;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.30), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
        margin: 0 0 0 0px;
    }
    .search {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        border: none;
        height: fit-content;
        margin: 0 0;
    }

}
