﻿div, button, input:not([type=checkbox]), html [type="button"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}


@font-face {
    font-family: 'ChosunGu';
    src: url(/fonts/Chosun/ChosunGu.ttf);
    font-weight: normal;
    font-style: normal;
    unicode-range: U+AC00-D7A3;
}

div {
    font-family: ChosunGu;
}

.cl-quick-nav {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

    .cl-quick-nav .platform {
        margin-left: 12px;
        cursor: pointer;
    }

        .cl-quick-nav .platform img {
            width: 24px;
            height: 24px;
        }

    .cl-quick-nav .manual {
        cursor: pointer;
    }

        .cl-quick-nav .manual a {
        }

            .cl-quick-nav .manual a img {
                width: 24px;
                height: 24px;
            }



/*로그인 페이지*/
.cl-login-card {
    min-width:200px;
    height: fit-content;
    display: flex;
    flex-flow: column;
    /*box-shadow: 2px 2px 15px #e8e8e8;*/
    border-radius: 10px;
    -webkit-border-radius: 10px;
    margin: auto;
    background: #fff;
    padding: 20px;
}


.cl-login-card_top {
    padding: 0 10px 0;
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
}

    .cl-login-card_top h3 {
        font-size: 25px;
        text-align: center;
        font-weight: 600;
        letter-spacing: 3px;
        color: #0a25a3;
    }

    .cl-login-card_top h4 {
        text-align: center;
    }

    .cl-login-card_top img {
        width: auto;
        height: 60px;
        margin: auto;
    }

.cl-login-card_body {
    display: flex;
    flex-flow: column;
}

    .cl-login-card_body a {
        color: #F65C33;
        text-align: center;
    }

        .cl-login-card_body a:hover {
        }

.cl-login-buttonimg {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 5px;
    background-color: transparent;
    border: 1px solid lightgray;
    font-size: 16px;
    color: dimgray;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

    .cl-login-buttonimg:hover {
        color: white;
        background-color: #c4c4c4;
        transition-duration: .3s;
        -webkit-transition-duration: .3s;
        transition-property: color, background-color;
        -webkit-transition-property: color, background-color;
    }

    .cl-login-buttonimg img {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

.cl-login-card_body p {
    background-color: transparent;
    border: none;
    margin: 0;
}

.cl-login-card_bottom button:focus {
    outline: none;
}

.cl-login-card_body_line {
    height: 2px;
    background-color: lightgray;
    margin: 20px 0;
}


.cl-login-card_bottom {
    display: flex;
    flex-flow: column;
    padding-bottom: 15px;
}

    .cl-login-card_bottom i {
        vertical-align: text-bottom;
        font-size: 20px;
    }

    .cl-login-card_bottom label {
        margin: 0 0 1px 3px;
        color: gray;
        font-size: 13px;
        font-weight: 600;
    }

    .cl-login-card_bottom .text {
        width: 90%;
    }
    .cl-login-card_bottom input {
        width: 100%;
        margin: 7px 0 20px;
        padding: 9px 13px;
        font-size: 18px;
        border: 1px solid #ededed;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        box-shadow: 1px 1px 3px #dedede;
        -webkit-box-shadow: 1px 1px 3px #dedede;
    }

        .cl-login-card_bottom input:hover {
            box-shadow: none;
            -webkit-box-shadow: none;
        }

        .cl-login-card_bottom input:active {
            outline: none;
            border: 1px solid lightgray;
            box-shadow: none;
            -webkit-box-shadow: none;
        }

        .cl-login-card_bottom input:focus {
            outline: none;
            box-shadow: none;
            -webkit-box-shadow: none;
        }

        .cl-login-card_bottom input::placeholder {
            color: #9c9c9c;
        }


    .cl-login-card_bottom button {
        margin: 15px 0 10px;
        font-size: 18px;
        color: #fff;
        font-weight: 600;
        background-color: #0a25a3;
        padding: 5px 8px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        border:none;
    }

        .cl-login-card_bottom button:hover {
            outline: 4px solid rgba(10, 37, 163, 0.2);
            transition-duration: .3s;
            -webkit-transition-duration: .3s;
            transition-property: outline;
            -webkit-transition-property: outline;
        }

        .cl-login-card_bottom button:active {
            outline: 4px solid rgba(10, 37, 163, 0.3)
        }


.cl-login-card_bottom_remember {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

    .cl-login-card_bottom_remember .checkbox {
        display: flex;
    }

    .cl-login-card_bottom_remember input {
        width: fit-content !important;
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        margin: 0 10px 0 0;
        border: 1px solid gray !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
    }

        .cl-login-card_bottom_remember input:focus {
            border: 1px solid lightgray !important;
        }

    .cl-login-card_bottom_remember label {
        margin: 0;
        font-size: 13px;
        color: gray !important;
    }

    .cl-login-card_bottom_remember p {
        margin: 0;
        font-size: 14px;
        color: gray;
        cursor: pointer;
        border-bottom: 1px solid transparent;
    }

        .cl-login-card_bottom_remember p:hover {
            border-bottom: 1px solid gray;
        }

.cl-login-card_bottom_join {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-flex-wrap: wrap;
}

    .cl-login-card_bottom_join p {
        margin: 0 0 5px 0;
        font-size: 14px;
    }

    .cl-login-card_bottom_join a {
        color: royalblue;
        font-weight: 600;
        margin-left: 10px;
    }


/*로그아웃*/

.cl-account .wrap .logout-card {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
}

    .cl-account .wrap .logout-card h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
        word-break: keep-all;
    }

    .cl-account .wrap .logout-card button {
        background: #0a25a3;
        color: #fff;
        border:none;
    }

        .cl-account .wrap .logout-card button:hover {
            outline: 4px solid rgba(10, 37, 163, 0.2);
            transition-duration: .3s;
            -webkit-transition-duration: .3s;
            transition-property: outline;
            -webkit-transition-property: outline;
        }

        .cl-account .wrap .logout-card button:focus {
            outline: 4px solid rgba(10, 37, 163, 0.3)
        }


/*레지스터*/
.cl-register-card {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-flow: row;
    padding: 30px;
    box-shadow: 2px 2px 15px #e8e8e8;
    -webkit-box-shadow: 2px 2px 15px #e8e8e8;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    margin: 30px 20px;
    background: #fff;
}

.cl-register-card_top {
    padding: 0 20px 20px;
}

    .cl-register-card_top img {
        width: 200px;
    }

    .cl-register-card_top h4 {
        text-align: center;
    }

.cl-register-card_body {
    display: flex;
    flex-flow: column;
    padding-bottom: 15px;
    border-bottom: 3px solid lightgray;
}

    .cl-register-card_body div {
        display: flex;
        flex-direction: column;
        margin-bottom: 13px;
    }

        .cl-register-card_body div label {
            font-weight: 600;
            margin: 0 0 0 5px;
            color: slategray;
        }

    .cl-register-card_body input {
        width: 100%;
        margin: 5px 0 0;
        padding: 8px 13px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
        box-shadow: 0px 0px 4px #cfcfcf;
        -webkit-box-shadow: 0px 0px 4px #cfcfcf;
        border: 1px solid #ededed;
    }

        .cl-register-card_body input:active {
            outline: none;
            border: none;
            box-shadow: 0px 0px 4px #bfbfbf;
            -webkit-box-shadow: 0px 0px 4px #bfbfbf;
        }

        .cl-register-card_body input:focus {
            outline: none;
            border: none;
            box-shadow: 0px 0px 7px #bfbfbf;
            -webkit-box-shadow: 0px 0px 7px #bfbfbf;
        }

        .cl-register-card_body input::placeholder {
            color: #9c9c9c;
        }

    .cl-register-card_body div {
        display: flex;
        justify-content: space-around;
    }

        .cl-register-card_body div p {
            margin: 10px 10px 10px;
            font-size: 14px;
            color: grey;
            border-bottom: 2px solid transparent;
            cursor: pointer;
        }

            .cl-register-card_body div p:hover {
                border-bottom: 2px solid grey;
            }

    .cl-register-card_body button {
        margin: 5px 0 15px;
        font-size: 18px;
        color: white;
        background-color: #FBAC97;
        border: none;
        padding: 5px 8px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
    }


    .cl-register-card_body h6 {
        font-size: 14px;
        color: lightslategray;
        text-align: end;
    }

.cl-register-card_bottom {
    display: flex;
    justify-content: center;
    flex-flow: column;
    padding-top: 18px;
    margin: 15px 0 0;
}

    .cl-register-card_bottom button {
        margin: 5px 0 15px;
        font-size: 18px;
        color: #fff;
        background-color: #0a25a3;
        border: none;
        padding: 5px 8px;
        border-radius: 8px;
        -webkit-border-radius: 8px;
    }

        .cl-register-card_bottom button:hover {
            outline: 4px solid rgba(10, 37, 163, 0.2);
            transition-duration: .2s;
            -webkit-transition-duration: .2s;
            transition-property: outline;
            -webkit-transition-property: outline;
        }

        .cl-register-card_bottom button:focus {
            outline: 4px solid rgba(10, 37, 163, 0.3)
        }

    .cl-register-card_bottom span {
        text-align: center;
        font-size:14px;
        word-break:keep-all;
    }

        .cl-register-card_bottom span a {
            color: mediumblue !important;
            border-bottom: 1px solid mediumblue;
            cursor: pointer;
        }

/* 회원가입 섹션 스타일 */
.cl-register-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e8e8;
}

    .cl-register-section:last-of-type {
        border-bottom: none;
    }

.cl-register-section_title {
    font-size: 15px;
    font-weight: 700;
    color: #0a25a3;
    margin-bottom: 12px;
}

.cl-register-section--optional .cl-register-section_title {
    color: #6b7280;
}

.cl-register-section--optional label {
    color: #6b7280 !important;
}

.cl-required {
    color: #dc2626;
    font-weight: 700;
}

/*권한 승인페이지*/
@media (max-width:500px) {
    .cl-logout .wrap .card h2 {
        font-size: 1.1em !important;
    }

    .cl-logout .wrap .card button {
        font-size: 0.8em;
    }
}


.cl-Autho {
    max-width: 600px;
    margin: auto;
    padding: 3em 0;
}

    .cl-Autho .title {
        font-size: 1.4em;
        word-break: keep-all;
        text-align: center;
    }

        .cl-Autho .title strong {
            font-size: 1.1em;
        }

    .cl-Autho .list-title {
        font-weight: bold;
        font-size: 1.2em;
        margin-top: 2em;
        margin-bottom: 20px;
        text-align: center;
    }

    .cl-Autho .cl-card {
        background-color: white;
        box-shadow: 1px 1px 8px #8585851f;
        -webkit-box-shadow: 1px 1px 10px #8585851f;
        background-color: white;
        margin-bottom: 25px;
        padding: 20px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        width: 100%;
        display: flex;
        min-height: 150px;
    }

        .cl-Autho .cl-card .scope_title {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: start;
            flex: 0 0 90px;
            padding-right:28px;
        }

            .cl-Autho .cl-card .scope_title h6 {
                font-size: 14px;
                font-weight:600;
                margin-top:5px;
            }

            .cl-Autho .cl-card .scope_title img {
                width: 50px;
                height: 50px;
            }

        .cl-Autho .cl-card .contents_wrap {
            flex-grow:1;
        }

            .cl-Autho .cl-card .contents_wrap h6 {
                font-size: 15px;
                font-weight: 600;
            }

            .cl-Autho .cl-card .contents_wrap ul {
                list-style: none;
                padding-left: 15px;
            }

                .cl-Autho .cl-card .contents_wrap ul li {
                    font-size: 16px;
                    position: relative;
                    color: #6c6c6c;
                    word-break:keep-all;
                }

                    .cl-Autho .cl-card .contents_wrap ul li:before {
                        content: "";
                        background: #8e8e8e;
                        height: 5px !important;
                        width: 5px !important;
                        position: absolute;
                        left: -13px;
                        top: 10px;
                        border-radius: 50%;
                    }

    .cl-Autho .button_wrap {
        display: flex;
        justify-content: space-between;
    }

    .cl-Autho .button_wrap {
        display: flex;
        justify-content: space-between;
    }

        .cl-Autho .button_wrap input {
            font-size: 20px !important;
            border-radius: 5px;
            padding: 5px 15px;
            border: none;
        }

            .cl-Autho .button_wrap input:first-child {
                background-color: #ff8000;
                color: white;
            }

                .cl-Autho .button_wrap input:first-child:focus {
                    outline: 4px solid rgba(255, 128, 0, 0.3)
                }

            .cl-Autho .button_wrap input:last-child {
                background-color: #0a25a3;
                color: white;
                border: none;
            }

                .cl-Autho .button_wrap input:last-child:focus {
                    outline: 4px solid rgba(10, 37, 163, 0.3)
                }
