.login_box {
    background: #fff;
    padding: 100px;
    border: 2px solid #ececec;
    width: 720px;
    margin: auto;
}

/* check */
.login_chk {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.chk_box label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.chk_box span {
    font-size: 12px;
    transition: color .3s ease;
    margin-left: 3px;
    color: #45484b;
}

.chk_box input[type="checkbox"] {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #d5dae7;
    background: #d3d3d3;
    transition: all .3s ease;
}

.chk_box input[type="checkbox"]:after {
    position: absolute;
    content: "\e928";
    font-family: 'xeicon';
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.chk_box input[type="checkbox"]:checked {
    background: #3bd3d2;
    border: 1px solid #3bd3d2;
}

.login_inp_box {
    display: flex;
}

.login_box .login_inp_cont {
    width: 350px;
}

.login_box .login_inp_cont .login_inp {
    width: 350px;
    height: 40px;
}

.login_box .login_inp_cont .login_inp input {
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
    padding: 0 5px 0 20px;
    box-sizing: border-box;
    font-size: 13px;
}

.login_box .login_inp_cont .login_inp+.login_inp {
    margin-top: 10px;
}

.login_box .login_btn {
    margin-left: auto;
    margin-top:0;
    border-radius: 0;
}

.login_box .login_btn button {
    width: 156px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #009db8;
    margin-left: auto;
    color: #fff;
    border-radius: 0;
}

.login_bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.login_bottom .btn {
    margin-top:0;
    border-radius: 0;
}
.login_bottom .btn .more_btn {
    border-radius: 0;

}

/* 공통 팝업 스타일 */
.alert_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    display: none;
}
.alert_popup .popup_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.alert_popup .popup_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
}
.alert_popup .popup_head h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.alert_popup .popup_x {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}
.alert_popup .popup_x:hover {
    color: #333;
}
.alert_popup .popup_body {
    padding: 25px;
}
.alert_popup .popup_form_row {
    margin-bottom: 20px;
}
.alert_popup .popup_form_row:last-child {
    margin-bottom: 0;
}
.alert_popup .popup_form_row label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}
.alert_popup .popup_form_row input {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}
.alert_popup .popup_form_row input:focus {
    border-color: #666;
    outline: none;
}
.alert_popup .popup_hint {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}
.alert_popup .popup_foot {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}
.alert_popup .popup_foot button {
    flex: 1;
    height: 48px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}
.alert_popup .popup_btn_cancel {
    background: #eee;
    color: #666;
}
.alert_popup .popup_btn_cancel:hover {
    background: #ddd;
}
.alert_popup .popup_btn_confirm {
    background: #3d3d3d;
    color: #fff;
}
.alert_popup .popup_btn_confirm:hover {
    background: #555;
}

/* 아이디/비밀번호 찾기 탭 스타일 */
.find_tab {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}
.find_tab_btn {
    flex: 1;
    height: 45px;
    background: #f5f5f5;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}
.find_tab_btn:first-child {
    border-radius: 4px 0 0 0;
}
.find_tab_btn:last-child {
    border-radius: 0 4px 0 0;
}
.find_tab_btn:hover {
    background: #eee;
}
.find_tab_btn.active {
    background: #fff;
    color: #333;
    font-weight: 700;
    border-bottom: 2px solid #3d3d3d;
}
.find_form_content {
    padding: 5px 0;
}

@media(max-width:480px){
    .alert_popup .popup_box {
        max-width: 95%;
    }
    .alert_popup .popup_body {
        padding: 20px 15px;
    }
    .find_tab_btn {
        font-size: 13px;
        height: 40px;
    }
}

/* 회원가입 동의 */
.title {
    font-size: 16px;
    padding: 0;
    margin-bottom: 10px;
    color: #000;
}

.title:before {
    content: '';
    position: relative;
    top: 0;
    left: 0;
    margin-right: 8px;
    border-left: 3px solid #777
}

.agree_wrap {
    margin-bottom: 50px
}

.agree_wrap .glores-A-agree-box {
    height: 250px;
    padding: 20px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background: #fff;
}

.agree_wrap .glores-A-agree-box .infBox {
    text-align: right;
    margin-top: 5px;
    padding-left: 10px;
    font-size: 13px;
    line-height: 1.5em;
}

.agree_wrap .glores-A-agree-box h5 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    text-align: left;
}

.agreementBody h4 {
    margin-bottom: .5em;
    font-size: inherit;
}

.glores-A-agree-box p {
    padding-left: 10px;
    font-size: 13px;
    line-height: 1.5em;
}

.agreementBody .sc_ptop {
    text-align: right;
}

.agreementBody .sc_ptop a {
    display: inline-block;
    padding: 5px 8px;
    background: #999;
    border-radius: 3px;
    margin-right: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
}

.glores-A-agree-box li {
    margin-top: 10px;
    margin-bottom: .5em;
    padding-left: 10px;
    line-height: 1.4em;
}

.glores-A-agree-box h5 {
    margin: 20px 0;
    text-align: left;
}

.agreementBody .acon div {
    font-size: 13px;
    line-height: 1.4em;
}

.agree_chk {
    margin: 15px 0;
}

.join_agree .login_bottom {
    margin-top: 50px;
}

/* join_form */
.join_form {
    background: #fff;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.join_form_box {
    margin-bottom: 40px;
}

.join_form .box {
    border-top: 1px solid #f0f0f0;
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

.join_form .box:last-child {
    border-bottom: 1px solid #f0f0f0;
}

.form_lst {
    display: inline-flex;
    padding: 4px 0;
}

.join_form .form_title p span {
    display: table-cell;
    width: 150px;
    height: 40px;
    padding: 0 4px;
    font-size: inherit;
    vertical-align: middle;
}

.join_form .form_title p span i {
    color: red;
    font-size: 15px;
}

.form_value input,
.form_value select,
.form_value button {
    height: 40px;
    margin: 0;
    padding: 0 8px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: 13px;
    box-sizing: border-box;
}

.form_value p {
    line-height: 24px;
    margin: 3px 0;
    color: #999;
}

.form_value .login_inp+.login_inp {
    margin-top: 3px
}

.form_value .login_inp span {
    font-size: 13px;
    margin-right: 8px;
}

.birthday_box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio_box {
    display: flex;
}

.radio_box label {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    width: 80px;
    height: 40px;
    background: #fff;
    border: 1px solid #999;
}

.radio_box label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer
}

.radio_box label input[type="radio"]:checked {
    background: #999;
    border-color: transparent;
}

.radio_box label span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 이용약관 */
.agree .sec_wrap {
    line-height: 1.5;
    margin-bottom: 150px;
}

.agree .sec_wrap b {
    color: #333;
    font-weight: 500;
}

@media(max-width:780px) {

    /* login */
    .login_box {
        max-width: 515px;
        width: 100%;
        padding: 30px 15px;
    }

    .login_inp_box {
        flex-direction: column;
    }

    .login_box .login_inp_cont,
    .login_box .login_inp_cont .login_inp {
        width: 100%;
    }

    .login_box .login_btn {
        margin-left: 0;
        margin-top: 10px;
    }

    .login_box .login_btn button {
        width: 100%;
        height: 60px;
    }

    .title {
        text-align: center;
    }

    .join_form {
        padding: 0;
        border: 0;
    }

    .join_form .form_title p span {
        width: 80px;
    }

    .birthday_box {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    /* joinForm */
    .join_form .form_title {
        width: 80px;
    }

    .join_form .form_value {
        width: calc(100% - 80px)
    }

    .join_form .form_value .calc_width {
        position: relative;
        padding-right: 113px;
    }

    .join_form .form_value .calc_width input[type="text"],
    .join_form .form_value .width_inp input[type="text"] {
        width: 100%
    }

    .join_form .form_value .width_inp input[type="text"] {
        margin-top: 3px
    }

    .form_value button {
        position: absolute;
        width: 110px;
        top: 0;
        right: 0;
    }

    .form_value input,
    .form_value select {
        width: 30%;
    }

    .form_value input[type="password"] {
        width: 40%;
    }

    .form_value input[name="email"] {
        width: 45%;
    }

    .tel_sel {
        width: 100%;
    }

    .tel_sel select {
        width: auto;
    }

    .form_value .login_inp span {
        margin-right: 0;
    }

    .section_wrap section {
        margin-bottom: 20px;
    }
}