@import url("basic_css.css");

   /*
*
* ==========================================
* PC, 노트북반응형은 안함
* ==========================================
*
*/

@media screen and (min-width:1025px){
/* --------------------------------------------------------content----------------------------------------------------------- */

.login_wrap {
    width: 100%;
    height: 2000px;
    margin: 0 auto;
}

.content_inner {
    position: relative;
    width: 1124px;
    height: calc(100% - 40px);
    padding-top: 40px;
    margin: 0 auto;
}

.content{
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* 여기서 각 컨테이너 크기조절 */
.container_wrap:nth-child(1) {
    width: 100%;
    overflow: hidden;
    padding: 60px 0px 60px 0px;
    border-bottom: 1px solid #d2d2d7;
}

.container_wrap:nth-child(2) {
    width: 100%;
    overflow: hidden;
    padding: 60px 0px 60px 0px;
    border-bottom: 1px solid #d2d2d7;
}

.container_wrap:nth-child(3) {
    width: 100%;
    overflow: hidden;
    padding: 60px 0px 60px 0px;
    border-bottom: 1px solid #d2d2d7;
}

.container {
    width: 460px;
    margin: 0 auto;
    /* background-color: aqua; */
}

h1 {
    text-align: center;
    color: black;
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
    text-align: center;
}

.input_container {
    width: 100%;
    border: 1px solid #d6d6d6;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    height: 56px;
    box-sizing: border-box;
    border-radius: 5px;
}

.input_container:last-child {
    margin-bottom: 0px;
}

/* ======================================================= */
/* 회원정보선택 */

.container_wrap:nth-child(1) .input_container:nth-child(2) {
    margin-bottom:  30px;
}

.login_type_text {
    width: 100%;
    height: 20px;
    font-size: 12px;
    font-weight: 900;
    margin-top:30px;
    float: left;
}

.login_type {
    display: block;
    padding-left: 12px;
    width: 100%;
    height: 100%;
    border: none;
    color: #909090;
    font-size: 16px;
    outline: none;
}

/* ======================================================= */
/* 아이디 */

.container_wrap:nth-child(1) .input_container:nth-child(3) {
    margin-bottom: 10px;
}

.input_id_label {
    position: absolute;
    top: calc(50% - 12.5px);
    left: 17px;
    font-size: 16px;
    color: #909090;
    cursor: text;
    transition: all 0.2s ease;
    pointer-events: none;
    white-space: nowrap;
    z-index: 99;
}

.input_id {
    display: block;
    position: absolute;
    width: 440px;
    height: 35px;
    border: none;
    bottom: 0px;
    right: 0px;
    padding-left: 20px;
    padding-top: 36px;
    outline: none;
    margin: 0 auto;
    z-index: 98;
    font-size: 1.1em;
    color: #909090;
}

/* ======================================================= */
/* 2차비밀번호 */

.container_wrap:nth-child(1) .input_container:nth-child(3) {
}

.input_second_password_label {
    position: absolute;
    top: calc(50% - 12.5px);
    left: 17px;
    font-size: 16px;
    color: #909090;
    cursor: text;
    transition: all 0.2s ease;
    pointer-events: none;
    white-space: nowrap;
    z-index: 99;
}

.input_second_password {
    display: block;
    position: absolute;
    width: 440px;
    height: 35px;
    border: none;
    bottom: 0px;
    right: 0px;
    padding-left: 20px;
    padding-top: 36px;
    outline: none;
    margin: 0 auto;
    z-index: 98;
    font-size: 1.1em;
    color: #909090;
}


.label_active {
    font-size: 12px;
    top: 6px;
}

.input_container_active {
    border-color: #0070c9;
    border-width: 1px;
    box-shadow: 0 0 0 3px rgb(131 192 253 / 50%);
}


.btn_regAgree {
    display: block;
    border: none;
    width: 280px;
    height: 40px;
    border-radius: 5px;
    outline: none;
    font-weight: bold;
    background-color: #0072de;
    color: white;
    margin: 0 auto;
    margin-top: 60px;
}

.error_box{
    display: none;
    margin: 10px 0px 20px 0px;
    font-size: 12px;
    line-height: 14px;
    color: red;
}

#password2Msg, #emailMsg{
    margin: 10px 0px 0px 0px !important; 
}

}

  /*
*
* ==========================================
* 모바일 360~767, 테블릿 768~1024
* ==========================================
*
*/
   
@media screen and (min-width:360px) and (max-width:1024px){



/* --------------------------------------------------------content----------------------------------------------------------- */

.login_wrap {
    width: 100%;
    height: 900px;
    margin: 0 auto;
}

.content_inner {
    position: relative;
    width: calc(100% - 50px);
    height: calc(100% - 40px);
    padding: 0px 25px;
    padding-top: 100px;
    margin: 0 auto;
}

.content{
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* 여기서 각 컨테이너 크기조절 */
.container_wrap:nth-child(1) {
    width: 100%;
    overflow: hidden;
    padding: 60px 0px 60px 0px;
    border-bottom: 1px solid #d2d2d7;
}

.container_wrap:nth-child(2) {
    width: 100%;
    overflow: hidden;
    padding: 60px 0px 60px 0px;
    border-bottom: 1px solid #d2d2d7;
}

.container_wrap:nth-child(3) {
    width: 100%;
    overflow: hidden;
    padding: 60px 0px 60px 0px;
    border-bottom: 1px solid #d2d2d7;
}

.container {
    width: 100%;
    margin: 0 auto;
    /* background-color: aqua; */
}

h1 {
    text-align: center;
    color: black;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: -1px;
}

p {
    margin-bottom: 20px;
    text-align: center;
    font-size: 13px;
    letter-spacing: -1px;
}

.input_container {
    width: 100%;
    border: 1px solid #d6d6d6;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    height: 56px;
    box-sizing: border-box;
    border-radius: 5px;
}

.input_container:last-child {
    margin-bottom: 0px;
}

/* ======================================================= */
/* 회원정보선택 */
.container_wrap:nth-child(1) .input_container:nth-child(2) {
    margin-bottom:  30px;
}

.login_type_text {
    width: 100%;
    height: 20px;
    font-size: 12px;
    font-weight: 900;
    margin-top:30px;
    float: left;
}

.login_type {
    display: block;
    padding-left: 12px;
    width: 100%;
    height: 100%;
    border: none;
    color: #909090;
    font-size: 16px;
}

/* ======================================================= */
/* 아이디 */

.container_wrap:nth-child(1) .input_container:nth-child(3) {
    margin-bottom: 10px;
}

.input_id_label {
    position: absolute;
    top: calc(50% - 12.5px);
    left: 17px;
    font-size: 16px;
    color: #909090;
    cursor: text;
    transition: all 0.2s ease;
    pointer-events: none;
    white-space: nowrap;
    z-index: 99;
}

.input_id {
    display: block;
    position: absolute;
    width: calc(100% - 20px);
    height: 35px;
    border: none;
    bottom: 0px;
    right: 0px;
    padding-left: 20px;
    padding-top: 36px;
    outline: none;
    margin: 0 auto;
    z-index: 98;
    font-size: 1.1em;
    color: #909090;
}

/* ======================================================= */
/* 2차비밀번호 */

.container_wrap:nth-child(1) .input_container:nth-child(4) {
}

.input_second_password_label {
    position: absolute;
    top: calc(50% - 12.5px);
    left: 17px;
    font-size: 16px;
    color: #909090;
    cursor: text;
    transition: all 0.2s ease;
    pointer-events: none;
    white-space: nowrap;
    z-index: 99;
}

.input_second_password {
    display: block;
    position: absolute;
    width: calc(100% - 20px);
    height: 35px;
    border: none;
    bottom: 0px;
    right: 0px;
    padding-left: 20px;
    padding-top: 36px;
    outline: none;
    margin: 0 auto;
    z-index: 98;
    font-size: 1.1em;
    color: #909090;
}


.label_active {
    font-size: 12px;
    top: 6px;
}

.input_container_active {
    border-color: #0070c9;
    border-width: 1px;
    box-shadow: 0 0 0 3px rgb(131 192 253 / 50%);
}


.btn_regAgree {
    display: block;
    border: none;
    width: 280px;
    height: 40px;
    border-radius: 5px;
    outline: none;
    font-weight: bold;
    background-color: #0072de;
    color: white;
    margin: 0 auto;
    margin-top: 60px;
}

.error_box{
    display: none;
    margin: 10px 0px 20px 0px;
    font-size: 12px;
    line-height: 14px;
    color: red;
}

#password2Msg, #emailMsg{
    margin: 10px 0px 0px 0px !important; 
}
}



     /*
*
* ==========================================
* 모바일 - 359이하
* ==========================================
*
*/


@media screen and (min-width:0px) and (max-width:359.5px){

    .login_wrap {
        width: 100%;
        height: 900px;
        margin: 0 auto;
    }
    
    .content_inner {
        position: relative;
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        padding: 0px 20px;
        padding-top: 100px;
        margin: 0 auto;
    }
    
    .content{
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    /* 여기서 각 컨테이너 크기조절 */
    .container_wrap:nth-child(1) {
        width: 100%;
        overflow: hidden;
        padding: 60px 0px 60px 0px;
        border-bottom: 1px solid #d2d2d7;
    }
    
    .container_wrap:nth-child(2) {
        width: 100%;
        overflow: hidden;
        padding: 60px 0px 60px 0px;
        border-bottom: 1px solid #d2d2d7;
    }
    
    .container_wrap:nth-child(3) {
        width: 100%;
        overflow: hidden;
        padding: 60px 0px 60px 0px;
        border-bottom: 1px solid #d2d2d7;
    }
    
    .container {
        width: 100%;
        margin: 0 auto;
        /* background-color: aqua; */
    }
    
    h1 {
        text-align: center;
        color: black;
        margin-bottom: 10px;
        font-size: 16px;
        letter-spacing: -1px;
    }
    
    p {
        margin-bottom: 20px;
        text-align: center;
        font-size: 13px;
        letter-spacing: -1px;
    }
    
    .input_container {
        width: 100%;
        border: 1px solid #d6d6d6;
        position: relative;
        margin: 0 auto;
        overflow: hidden;
        height: 56px;
        box-sizing: border-box;
        border-radius: 5px;
    }
    
    .input_container:last-child {
        margin-bottom: 0px;
    }
    
        /* ======================================================= */
/* 회원정보선택 */

.container_wrap:nth-child(1) .input_container:nth-child(2) {
    margin-bottom:  30px;
}

.login_type_text {
    width: 100%;
    height: 20px;
    font-size: 12px;
    font-weight: 900;
    margin-top:30px;
    float: left;
}

.login_type {
    display: block;
    padding-left: 12px;
    width: 100%;
    height: 100%;
    border: none;
    color: #909090;
    font-size: 16px;
}

    /* ======================================================= */
    /* 아이디 */
    
    .container_wrap:nth-child(1) .input_container:nth-child(3) {
        margin-bottom: 10px;
    }
    
    .input_id_label {
        position: absolute;
        top: calc(50% - 12.5px);
        left: 17px;
        font-size: 16px;
        color: #909090;
        cursor: text;
        transition: all 0.2s ease;
        pointer-events: none;
        white-space: nowrap;
        z-index: 99;
    }
    
    .input_id {
        display: block;
        position: absolute;
        width: calc(100% - 20px);
        height: 35px;
        border: none;
        bottom: 0px;
        right: 0px;
        padding-left: 20px;
        padding-top: 36px;
        outline: none;
        margin: 0 auto;
        z-index: 98;
        font-size: 1.1em;
        color: #909090;
    }
    
    /* ======================================================= */
    /* 2차비밀번호 */
    
    .container_wrap:nth-child(1) .input_container:nth-child(4) {
    }
    
    .input_second_password_label {
        position: absolute;
        top: calc(50% - 12.5px);
        left: 17px;
        font-size: 16px;
        color: #909090;
        cursor: text;
        transition: all 0.2s ease;
        pointer-events: none;
        white-space: nowrap;
        z-index: 99;
    }
    
    .input_second_password {
        display: block;
        position: absolute;
        width: calc(100% - 20px);
        height: 35px;
        border: none;
        bottom: 0px;
        right: 0px;
        padding-left: 20px;
        padding-top: 36px;
        outline: none;
        margin: 0 auto;
        z-index: 98;
        font-size: 1.1em;
        color: #909090;
    }
    
    
    .label_active {
        font-size: 12px;
        top: 6px;
    }
    
    .input_container_active {
        border-color: #0070c9;
        border-width: 1px;
        box-shadow: 0 0 0 3px rgb(131 192 253 / 50%);
    }
    
    
    .btn_regAgree {
        display: block;
        border: none;
        width: 100%;
        height: 40px;
        border-radius: 5px;
        outline: none;
        font-weight: bold;
        background-color: #0072de;
        color: white;
        margin: 0 auto;
        margin-top: 60px;
    }
    
    .error_box{
        display: none;
        margin: 10px 0px 20px 0px;
        font-size: 12px;
        line-height: 14px;
        color: red;
    }
    
    #password2Msg, #emailMsg{
        margin: 10px 0px 0px 0px !important; 
    }

}