﻿@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body, h3 {
    font-family: "Public Sans" !important;
    font-feature-settings: 'liga' off, 'clig' off;
}

LoginSection {
    display: block;
    margin: 0px auto;
    width: 1000px;
}

div.Login-Area {
    margin: 0px auto;
    width: 500px;
    display: grid;
    grid-template-rows: 136px auto;
}

div.Login-Logo {
    background: url(/contents/images/v2/login/v2Logo.png) no-repeat center;
    background-position-y: 60px;
    cursor: pointer;
}

div.Login-Form {
    display: grid;
}


    div.Login-Form p.grid {
        padding: 0;
        margin: 0;
        margin-bottom: 25px;
        display: grid;
    }
    div.Login-Form p.nogrid {
        padding: 0;
        margin: 0;
        margin-top: 30px;
        justify-self: center;
    }
        div.Login-Form p label {
            color: #242424;
        }



label.logTitleStyle-1 {
    font-size: 30px;
    font-weight: bold;
}


label.logTitleStyle-2 {
    font-size: 18px;
    font-weight: bold;
}

div.Login-Form input {
    width: 100%;
    height: 56px;
    background: #fff;
    border: 1px solid #ADADAD;
    border-radius: 4px;
}

b.eyes {
    position: absolute;
    margin-left: -40px;
    margin-top: 15px;
    cursor: pointer;
    color: #000;
    transition: all 0.2s ease;
}
    b.eyes:hover,
    b.eyes.active {
        color: #ff0000;
        transition: all 0.2s ease;
    }

b.eyes:before {
    content: '\f06e';
    font-family: 'fontAwesome';
    font-size: 20px;
    font-weight: normal;
}
    b.eyes.active:before {
        content: '\f070';
        font-family: 'fontAwesome';
        font-size: 20px;
        font-weight: normal;
    }


div.Login-Form button {
    width: 100%;
    height: 56px;
    border-radius: 4px;
    font-size: 16px;
}

#btnLogin {
    margin-top: 10px;
    background: #19AA75;
    border: 1px solid #19AA75;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

#btnFindPw {
    margin-top: 10px;
    background: #19AA75;
    border: 1px solid #19AA75;
    color: #fff;
    font-weight: bold;
    opacity: .5;
    cursor: default;
}

    #btnLogin.active,
    #btnFindPw.active {
        opacity: 1;
        cursor: pointer;
    }

#btnRegist {
    margin-top: 60px;
    background: #fff;
    border: 2px solid #19AA75;
}
    #btnRegist a {
        color: #19AA75;
        display: inline-block;
        width: 100%;
        height: 100%;
        align-content: center;
    }

label.smallgray {
    font-size: 12px;
    color: #A3A3A3;
}


.loading, .bloading {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
    background-color: #17181B;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    z-index: 1001;
    margin-left: 0px;
    cursor: pointer;
}

.square {
    position: fixed;
    left: 50%;
    top: 47%;
    width: 100px;
    height: 100px;
    /* background: #2ecc71; */
}

.spin {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: dashed 5px white;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}


div.popAlertArea {
    display: none;
    position: fixed;
    top: 30%;
    left: calc(50% - 200px);
    width: 400px;
    padding: 25px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 5px 5px 10px 3px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 5px 5px 10px 3px rgb(0 0 0 / 10%);
    -moz-box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 5px 5px 10px 3px rgba(0, 0, 0, 0.1);
    z-index: 1002;
}


    div.popAlertArea button {
        background: #19AA75;
        width: 100%;
        height: 50px;
        color: #fff;
        font-weight: bold;
        border: 0px;
        border-radius: 5px;
    }
    div.popAlertArea button:hover {
        background: #158f62;
    }

div.popAlert {
    margin-bottom: 20px;
    display: grid;
    justify-items: center;
    color: #000;
}

    div.popAlert label {
        font-size: 20px;
        font-weight: 700;
        padding-bottom: 10px;
        text-align: center;
    }

    div.popAlert span {
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        text-align: center;
        color: #555;
        font-feature-settings: 'liga' off, 'clig' off;
    }

span.navi-back {
    display: block;
    /*padding: 12px 0px;*/
    font-size: 16px;
    margin-bottom: 10px;
    cursor: pointer;
}
span.navi-back,
span.navi-back label{
    cursor: pointer;
}
span.navi-back i {
    margin-right: 5px;
}

div.step-display {
    display: flex;
}


div.step-display p {
    display: grid;
    margin: 0px;
    margin-right: 4px;
    width: 65px;
}

    div.step-display p span.step-bar {
        border: 0px solid #000;
        padding: 2px 0px;
        background: #E7E7E7;
    }

    div.step-display p.active span.step-bar {
        background: #19AA75;
    }

    div.step-display p span.step-text {
        display: block;
        font-size: 12px;
        padding-left: 2px;
        color: #fff;
    }

        div.step-display p span.step-text.active {
            color: #19AA75;
        }
    /*div.step-display p.active:nth-last-child(-2) span.step-text {
        color: #19AA75;
    }*/

div.Regist-Form {
    display: none;
}

div.Regist-Form.active {
    display: block;
}

    div.Regist-Form h3,
    div.Find-Form h3 {
        color: #242424;
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        margin-top: 10px;
    }

    div.Regist-Form small {
        color: #777;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 150% */
    }
div.choose-group p {
    height: 144px;
    border-radius: 8px;
    border: 1px solid #D5D5D5;
    margin-bottom: 12px;
    padding: 24px;
    display: grid;
    grid-template-rows: 60px auto;
    grid-row-gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}


    div.choose-group p:hover,
    div.choose-group p.active {
        border: 1px solid #6d6d6d;
        transition: all 0.2s ease;
    }


    div.choose-group p icon {
        width: 60px;
        background: #D5D5D5;
        border-radius: 50%;
    }
    div.choose-group p label {
        color: #242424;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
    }

div.choose-group-02 p {
    height: 169px;
    border-radius: 8px;
    border: 1px solid #19AA75;
    margin-top: 16px;
    padding: 24px;
    display: grid;
    grid-template-rows: 60px auto;
    grid-row-gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}
    div.choose-group-02 p.active {
        background: #19AA75;
    }

    div.choose-group-02 p icon {
        width: 60px;
        background: #D5D5D5;
        border-radius: 50%;
    }

    div.choose-group-02 p label {
        display: grid;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px; /* 155.556% */
        color: #19AA75;
    }

        div.choose-group-02 p label small {
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            color: #19AA75;
            line-height: 16px;
        }


    div.choose-group-02 p.active label,
    div.choose-group-02 p.active label small {
        color: #fff;
    }



div.Myself-Form p,
div.Find-Form p {
    margin: 0;
    padding: 0;
    display: grid;
    grid-row-gap: 3px;
    margin-bottom: 24px;
}
    div.Myself-Form p lable,
    div.Myself-Form lable,
    div.Find-Form p lable {
        color: #242424;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        height: 20px;
        margin-bottom: 5px;
    }

        div.Myself-Form p lable.required::after,
        div.Find-Form p lable.required::after,
        div.Myself-Form lable.required::after {
            content: '\2a';
            font-family: 'fontAwesome';
            margin-left: 3px;
            font-size: 8px;
            color: #242424;
            margin-top: -3px;
            position: absolute;
        }

    div.Myself-Form p small,
    div.Find-Form p small {
        color: #555;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 14px;
    }
        div.Myself-Form p small:before,
        div.Find-Form p small:before {
            color: #555;
            content: '·';
            margin-right: 5px;
            font-weight: bold;
        }

    div.Myself-Form p input,
    div.Find-Form p input,
    div.Myself-Form p select {
        width: 100%;
        height: 56px;
        padding: 16px;
        border-radius: 4px;
        border: 1px solid #ADADAD;
        margin-top: 10px;
        z-index: 100;
    }
    div.Myself-Form p input,
    div.Find-Form p input {
        background: #FFF;
    }

        div.Find-Form p input[readonly="readonly"] {
            background: #dfdfdf;
        }

div.Myself-Form button,
div.Find-Form button {
    width: 100%;
    height: 56px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #19AA75;
    border: 0px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    opacity: 0.5;
    transition: all 0.2s ease;
    cursor: default !important;
}

    /*div.Myself-Form button:hover,*/
    /*div.Find-Form button:hover,*/
    div.Myself-Form button.active,
    div.Find-Form button.active {
        background: #19AA75;
        opacity: 1;
        transition: all 0.2s ease;
        cursor: pointer !important;
    }

div.Myself-Form div.iAgree {
    height: 30px;
    border: 0px solid #000;
    padding: 5px 0px;
    margin: 20px 0px;
    display: grid;
    grid-template-columns: 30px auto;
}

    span.iCheck {
        display: inline-block;
        width: 22px;
        height: 23px;
        border: 1px solid #000;
        border-radius: 3px;
        margin-top: 2px;
        cursor: pointer;
        padding: 0px;
    }
        span.iCheck.active {
            border: 1px solid #19AA75;
        }

    div.Myself-Form div.iAgree label {
        margin: 0px;
        padding: 0px;
        color: #242424;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
    }
        div.Myself-Form div.iAgree label b {
            color: #19AA75;
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
        }

    span.iCheck.active:before {
        content: '\f14a';
        font-family: 'fontAwesome';
        margin-left: 1px;
        margin-top: -2px;
        font-size: 20px;
        position: absolute;
        color: #19AA75;
    }

strong.radiostyle b {
    display: inline-block;
    line-height: 32px;
    margin-right: 20px;
    margin-left: 30px;
}

strong.radiostyle b span.iRadio {
    position: absolute;
    margin-left: -30px;
    margin-top: 5px;
}

span.iRadio {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 1px solid #000;
    border-radius: 50%;
    cursor: pointer;
    padding: 0px;
}

    span.iRadio.active {
        border: 1px solid #19AA75;
    }
        span.iRadio.active:before {
            content: '\f058';
            font-family: 'fontAwesome';
            margin-left: 2px;
            margin-top: -6px;
            font-size: 16px;
            position: absolute;
            color: #19AA75;
        }

div.Myself-Area[data-seq="Step03"] div.step-display p:nth-child(1) span.step-bar,
div.Myself-Area[data-seq="Step03"] div.step-display p:nth-child(2) span.step-bar,
div.Myself-Area[data-seq="Step03"] div.step-display p:nth-child(3) span.step-bar,
div.Myself-Area[data-seq="Step04"] div.step-display p:nth-child(1) span.step-bar,
div.Myself-Area[data-seq="Step04"] div.step-display p:nth-child(2) span.step-bar,
div.Myself-Area[data-seq="Step04"] div.step-display p:nth-child(3) span.step-bar,
div.Myself-Area[data-seq="Step04"] div.step-display p:nth-child(4) span.step-bar,
div.Myself-Area[data-seq="Step05"] div.step-display p:nth-child(1) span.step-bar,
div.Myself-Area[data-seq="Step05"] div.step-display p:nth-child(2) span.step-bar,
div.Myself-Area[data-seq="Step05"] div.step-display p:nth-child(3) span.step-bar,
div.Myself-Area[data-seq="Step05"] div.step-display p:nth-child(4) span.step-bar,
div.Myself-Area[data-seq="Step05"] div.step-display p:nth-child(5) span.step-bar {
    background: #19AA75;
}

div.Myself-Area[data-seq="Step03"] div.step-display p:nth-child(3) span.step-text,
div.Myself-Area[data-seq="Step04"] div.step-display p:nth-child(4) span.step-text,
div.Myself-Area[data-seq="Step05"] div.step-display p:nth-child(5) span.step-text {
    color: #19AA75;
}

div.Myself-Area h3,
div.Myself-Form {
    display: none;
}

div.isCustomer {
    display: none;
}

select {
    -webkit-appearance: none; /* for chrome */
    -moz-appearance: none; /*for firefox*/
    appearance: none;
    background: url('/contents/images/v2/login/ic_arrow_bottom.png') no-repeat center right;
    background-position-x: 460px;
}

    select::-ms-expand {
        display: none; /*for IE10,11*/
    }


div.Auth-Area {
    text-align: center;
}

    div.Auth-Area h3 {
        color: #242424;
        text-align: center;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
    }

    div.Auth-Area button {
        width: 100%;
        height: 56px;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        background: #19AA75;
        border: 0px;
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        transition: all 0.2s ease;
    }

#ResendBtn {
    width: 100%;
    height: 56px;
    margin-top: 10px;
    background: #fff;
    /*opacity: .5;*/
    color: #19AA75;
    border-radius: 5px;
    border: 2px solid #19AA75;
}
/*#ResendBtn:hover {
    opacity: 1;
}
*/

div.Auth-Area div.grid {
    display: grid;
    padding: 12px 0px;
}


    div.Auth-Area div.grid small {
        color: #777;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
    }
    div.Auth-Area div.grid b {
        color: #19AA75;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
    }

div.Auth-Area div.border {
    border-radius: 4px;
    border: 1px solid #D2D2D2;
}

div.Auth-Area p {
    margin: 20px 0px;
}

    div.Auth-Area p span {
        color: #555;
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 12px; /* 85.714% */
    }

div.ConfirmBox {
    width: 80%;
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid #D2D2D2;
    grid-template-rows: 50px 50px;
    padding: 0px !important;
    align-items: center;
}
    div.ConfirmBox label {
        display: block;
        background: #19AA75;
        color: #fff !important;
        place-content: center;
        height: 100%;
        font-size: 20px;
        font-weight: bold;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }
    div.ConfirmBox span {
        color: #dd8622 !important;
        font-size: 20px;
        font-weight: bold;
        text-decoration: underline;
    }

div.dropbox {
    display: none;
}

div.dropbox.active {
    display: block;
}


div.dropbox-Area {
    width: 100%;
    margin: 20px auto;
    padding: 12px 0px;
    border-radius: 4px;
    background: #F8F8F8 url('/contents/images/v2/login/ic_arrow_bottom.png') no-repeat center right;
    background-position-x: 94%;
    background-position-y: 13px;
    cursor: pointer;
}
    div.dropbox-Area label {
        color: #777;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        margin: 0;
        padding: 0;
        cursor: pointer;
    }

div.dropbox ul {
    margin: 0 auto;
    padding: 0;
    background: #fff;
    margin-top: 10px;
    width: 94%;
    border-radius: 8px;
}
div.dropbox ul li {
    text-align: left;
    padding: 4px 0px 2px 20px;
}
    div.dropbox ul li:before {
        color: #555;
        content: '·';
        margin-right: 5px;
        font-weight: bold;
    }

label.error {
    display: none !important;
}



@media screen and (max-width: 993px) {
    LoginSection {
        width: 100%;
    }

    div.Login-Area {
        width: calc(100% - 20px);
    }

}