﻿.location-search .location-search-title {
    text-align: center;
    height: 50px;
}

.location-search-form {
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

#location-search-input {
    width: 600px;
    height: 50px;
    margin-right: 39px;
    border-radius: 25px;
    border: solid 1px #424242;
    background-color: #fff;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: italic;
    line-height: normal;
    letter-spacing: normal;
    margin-top: 0px;
    margin-bottom: 0px;
}

#location-search-button {
    width: 200px;
    height: 50px;
    border-radius: 100px;
    border: solid 1px #02375a;
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #02375a;
}

@media only screen and (max-width: 768px) {
    #location-search-input {
        width: 100%;
    }

}

@media only screen and (max-width: 920px) {
    .location-search-form {
        height: auto;
        display: flex;
        flex-direction: column;
        row-gap: 15px;
    }

    #location-search-input {
        width: 100%;
        margin: 0;
    }

    #location-search-button {
        width: 100%;
        margin: 0;
    }
}