#frmJoin {
    width: 100%;
    max-width: 1000px;
    padding: 6% 13% 5.5%;

    border-radius: 1rem;
    border: 0.5px solid var(--info-100-color, #CCD8E8);
    background: #FFF;
    box-shadow: 0px 4px 12px 0px rgba(204, 216, 232, 0.10);

    text-align: center;
}

.logo {
    margin-bottom: 3.8rem;
    color: #000;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    display: flex;
    justify-content: center;
    align-items: center;
}
.form-items {
    width: 100%;
    box-sizing: border-box;
}

#frmJoin button[type=submit] {
    width: 50%;
    margin: 5rem auto 0;
}

#addressSearchWrap {
    width: 100%;
    height: 50vh;
    height: 50dvh;
    max-height: 50vh;
    max-height: 50dvh;
}



@media screen and (max-width: 767px) {
    
    .content-wrap {
        padding: 1.5rem;
    }

    #frmJoin {
        padding: 14% 5% 5.5%;
    }
    .logo {
        flex-direction: column;
    }

    #frmJoin button[type=submit] {
        width: 100%;
        margin-top: 3rem;
    }

    .btnFindAddress {
        width: 100% !important;
    }
    
}