@import url(//fonts.googleapis.com/earlyaccess/nanumgothic.css);

body {
    overflow: hidden;
}

/* reset */
button {
    border: 0;
    background-color: #fff;
}


/* Modal */
.sign-modal-overlay{
    width: 100%;
    height: 100vh;
    /* position */
    position: fixed;
    top: 0;
    left: 0;
    /* background */
    background: rgba(0, 0, 0, 0.50);
    z-index: 1000;
}

.sign-modal-cont-wrapper{
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10001;
    transform: translate(-50%, -50%);
    /* size */
    width: 280px;
    padding: 23px 8px 8px 24px;
    border-radius: 4px;
    /* flex */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* background */
    background-color: #fff;
    /* shadow */
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.20), 0px 6px 30px 0px rgba(0, 0, 0, 0.12), 0px 16px 24px 0px rgba(0, 0, 0, 0.14);
}

.sign-modal-cont{
    width: 100%;
    height: auto;
    min-height: 60px;
    padding-right: 16px;
    font-family: var(--font-kr);
    color: #000;
    font-size: 14px;
}

.sign-modal-confirm{
    display: inline-block;
    width: 100%;
    padding: 10px 8px;
    color: var(--dark-main-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
    cursor: pointer;
}

.reg {
    font-family: 'NanumGothic';
    /*제플린 폰트 수정 때문에 클래스 추가함 */
}

label {
    font-family: 'NanumGothic';
    /*제플린 폰트 때문에 클래스 추가함 */
}

.validate {
    font-family: 'NanumBarunGothicBold';
    /*제플린 폰트 때문에 클래스 추가함 */
    font-weight: bold;
}

.delete {
    position: absolute;
    padding: 4vw 5vw;
    top: 0;
    right: 10;
    background: url("./img/close_off.png") right 2.7vw no-repeat;
    background-size: 4.6vw 4.2vw;
    border: 0;
}

/* MAIN CSS */
/* PC Nav Hidden */
.pc-nav{
    display: none;
}

.login-main-container {
    background-color: #fff;
    width: 100%;
    height: 100vh;
    /* position */
    position: relative;
    /* flex */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile Header */
.mobile-header {
    width: 100%;
    height: 60px;
    padding-left: 16px;
    /* flex */
    display: flex;
    align-items: center;
}

/* mobile back button */
.mobile-back-btn {
    width: 25px;
    height: 25px;
}

.mobile-back-btn img {
    width: 100%;
}

/* Login Logo */
.login-logo-wrapper {
    margin-top: 14px;
    width: 200px;
    height: 50px;
}

/* login logo wrapper */
.login-logo-wrapper img {
    width: 100%;
}

/* Login Form */
.login-form {
    margin-top: 40px;
    /* size */
    width: auto;
    height: auto;
    /* flex */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* login label */
.login-input-label {
    width: 280px;
    height: 40px;
    position: relative;
}

/* login icon */
.login-input-img {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 25%;
    transform: translateY(-25%);
}

.login-input-img img {
    width: 100%;
}

/* Login input */
.login-input {
    width: 100%;
    font-size: 14px;
    padding: 8px 0 8px 35px;
    border: 0;
    border-bottom: 1px solid #E9E9E9;
}
/* 로그인 패스워드 비밀번호 찾기 만큼 줄이기 */
.login-pass-input{
    padding-right: 80px;
}

.login-input::placeholder {
    font-size: 12px;
}

/* Login Button */
.login-button {
    margin-top: 10px;
    width: 100%;
    height: 45px;
    background-color: #E9E9E9;
    color: var(--main-dark-grey);
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.login-button-valid {
    background-color: var(--main-color);
    color: #fff;
}


/* Login Password  */

/* 비밀번호 찾기 */
.find-password-button {
    color: #3C949A;
    text-align: right;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    /* 100% */
    text-decoration-line: underline;
    /* position */
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-45%);
}

/* Checkbox Wrapper */
.login-checkbox-wrapper {
    margin-top: 25px;
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

input.filled-in+label {
    cursor: pointer;
    color: #000;
    font-size: 14px;
}

input.filled-in+label>span {
    vertical-align: middle;
    padding-left: 4px;
}

/* label:before에 체크하기 전 상태 CSS */
input.filled-in+label:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    /* background */
    background-image: url('../../../img/icon/checkbox/unable.png');
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: center;
    vertical-align: middle;
}

/* label:before에 체크 된 상태 CSS */
input.filled-in:checked+label:before {
    content: "";
    border: 0;
    background-image: url('../../../img/icon/checkbox/able.png');
    background-repeat: no-repeat;
    background-size: 25px 25px;
    background-position: center;
}

/* SNS 로그인 섹션 */
.login-sns-wrapper{
    margin-top: 25px;
    width: 280px;
    /* flex */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* SNS 아이콘 wrapper */
.icon-wrapper{
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/* SNS 아이콘 */
.icon-wrapper img{
    width: 100%;
    height: 100%;
}

/* 회원가입 가기  */
.login-go-register{
    margin-top: 120px;
    /* font */
    font-size: 12px;
}

.register-btn{
    color: var(--dark-main-color);
    text-decoration: underline;
    cursor: pointer;
}

/* 반응형 PC 대응 */
@media screen and (min-width: 768px) {
    /* 상단 모바일 헤더 제거 */
    .mobile-header{
        display: none;
    }

    /* PC wrapper Style */
    .pc-wrapper{
        width: 100%;
        height: 100vh;
        background-color: #fafafa;
    }
    /* PC nav */
    .pc-nav{
        width: 100%;
        height: 65px;
        /* flex */
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* padding */
        padding: 0 70px;
        /* background */
        background: #FFF;
        /* shadow */
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
    }
    /* PC Nav Logo */
    .pc-logo-wrapper{
        width: 100px;
        height: 25px;
        cursor: pointer;
    }

    .pc-logo-wrapper img{
        width: 100%;
    }

    /* PC Login Sign */
    .pc-login-sign{
        display: flex;
        align-items: center;
        gap: 6px;
    }
    /* Sign Word */
    .pc-login-sign span{
        color: var(--dark-main-color);
        font-size: 14px;
        font-weight: 700;
        line-height: 14px;
    }
    /* Sign icon */
    .pc-login-sign-icon{
        width: 25px;
        height: 25px;
    }

    .pc-login-sign-icon img{
        width: 100%;
        height: 100%;
    }


    /* MAIN CSS */
    .login-main-container{
        /* position */
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        /* size */
        width: 350px;
        height: 540px;
        /* padding */
        padding: 50px 60px;
        /* border */
        border: 1px solid #E9E9E9;
    }
}