.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.container .header-container {
    display: flex;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 20px;
    padding-right: 16px;
    padding-left: 16px;
    justify-content: space-between;
    align-content: center;
}

.container .header-container .select-language {
    width: 80px;
    height: 32px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #f8f8f9;
    border: 1px solid #bfc2cb;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-radius: 8px;
    padding-left: 16px;
    background-image: url(Ze64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABzSURBVHgB7c3BDUBAEAXQPzgMLktFStGCCiiBCrSjG25WIkYcJdhE7EEyL5nT/JkPKKX+j1yBlE0pRP3VTjap5mVqn+4DOGwEc7cTwgiH0BVYVzuEUQIiFKdikcbaqcNXmPM6iTM5htnU8OEo8fZcKfXeDjIeG8MZyyleAAAAAElFTkSuQmCC);
    background-position: 50px;
    background-repeat: no-repeat;
}

.container .header-container .js-btn-back {
    cursor: pointer;
    display: inline-block;
    width: 32px;
    height: 32px;
    overflow: clip;
    align-self: start;
}

.container .content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.container .content-container .title {
    margin-top: 0;
    margin-bottom: 24px;
    font-family: Pretendard;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    line-break: 29px;
    color: #fff;
    text-align: left;
}

.container .content-container .input-box .input-data::placeholder {
    color: #bfc2cb;
    font-size: 14px;
}

.container .content-container .wrong-info-notice.visible {
    display: block;
}

.container .content-container .phone-box {
    display: flex;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
}

.container .content-container .phone-box .input-data {
    flex-grow: 1;
    text-align: center;
    border: none;
    outline: none;
}

.container .content-container .check-phone-btn-box {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.container .content-container .check-phone-btn-box .check-phone-num-btn {
    background-color: #B48B5E;
    border: 1px solid #B48B5E;
    width: 180px;
    padding: 7px 24px;
    font-family: Pretendard;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    cursor: pointer;
}

.container .content-container .js-btn-phone-confirm-box.invisible {
    display: none;
}
.container .content-container .js-btn-phone-confirm-box.visible {
    display: flex;
}
.container .content-container .js-btn-phone-confirm-box .js-btn-check-phone-num-confirm {
    cursor: pointer;
    background-color: #c3c3c3;
    border: 1px solid #c3c3c3;
}
.container .content-container .js-btn-phone-confirm-box .js-btn-check-phone-num-confirm.active {
    background-color: #B48B5E;
    border: 1px solid #B48B5E;
}

.container .content-container .join-confirm-btn {
    padding: 20px 24px;
    font-family: Pretendard;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: .06em;
    color: #fff;
    background-color: #c3c3c3;
    border: 1px solid #c3c3c3;
}

/* .container .content-container .join-confirm-btn.inactive {

} */

.container .content-container .join-confirm-btn.active {
    background-color: #B48B5E;
    border: 1px solid #B48B5E;
    cursor: pointer;
}