.search {
    width: 80vw;
    margin: 0 auto;
    padding-top: 22px;
    text-align: center;
    /*display: none;*/
}
.search form {
    display: flex;
    justify-content: center;
    align-items: center;
}
#keywords {
    width: 40vw;
    height: 40px;
    padding: 0 20px;
    box-sizing: border-box;
    border: 1px solid #015cb9;
    border-right: none;
    outline: none;
}
#submit {
    width: 80px;
    height: 40px;
    border: 1px solid #015cb9;
    background-color: #015cb9;
    color: #fff;
    cursor: pointer;
}

@media (max-width:650px){
    .search {
        width: 95vw;
    }
    #keywords {
        width: 100%;
    }
}