﻿@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;600&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;500&display=swap');
@charset "utf-8";


/* CSS Document */

body {
    background: #f0f4f3;
}

body, div, ul, li, ol, a, span, img, form, input {
    padding: 0;
    margin: 0;
    color: #555;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1;
    border: none;
    list-style: none;
    box-sizing: border-box;
}

#wrapper {
    position: absolute;
    top: 50%;
    height: 600px;
    margin-top: -320px;
    width: 100%;
}

#content {
    width: 470px;
    margin: 0 auto;
}

@media (max-width: 620px) {
    #wrapper {
        top: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 450px) {
    #content {
        width: 90%;
    }
}

#cont-white {
    background: #fff;
    border-radius: 0px 0px 7px 7px;
    padding: 40px 30px 36px 30px;
}

#cont-green {
    background: #40c6a7;
    border-radius: 7px 7px 0px 0px;
    padding: 40px 20px;
    color: #fff;
    clear: both;
}

#logo {
    text-align: center;
}

    #logo ul li {
        font-size: 22px;
        color: #fff;
        font-weight: 500;
        vertical-align: top;
        line-height: 24px;
    }

        #logo ul li:last-child {
            padding-top: 10px;
        }

#login-title {
    font-weight: bold;
    width: 100%;
    text-align: center;
    font-size: 48px;
    color: #40c6a7;
    padding-bottom: 22px;
}

#login-form {
    width: 70%;
    margin: 0 auto;
}

@media (max-width: 450px) {
    #login-form {
        width: 100%;
    }
}

#login-form01 ul li {
    margin-bottom: 16px;
}

    #login-form01 ul li:first-child {
        margin-bottom: 8px;
    }

    #login-form01 ul li input {
        background: #f4f8f7;
        height: 40px;
        line-height: 40px;
        color: #333;
        width: 100%;
        padding-left: 30px;
        background-repeat: no-repeat;
        color: #666;
    }

    #login-form01 ul li .id {
        background-image: url(images/login/icon_id.png);
        background-position: 10px 15px;
    }

    #login-form01 ul li .pw {
        background-image: url(images/login/icon_pw.png);
        background-position: 10px 12px;
    }

    #login-form01 ul li .login {
        background: #3aaf9f;
        color: #fff;
        border-radius: 40px;
        font-size: 18px;
        padding-left: 0px;
        text-align: center;
        cursor: pointer;
    }

.login-remember01 {
    padding-bottom: 15px;
    margin-top: 2px;
    background: #fff;
}

    .login-remember01 ul li {
        padding-left: 5px;
        font-size: 13px;
        color: #666;
        vertical-align: top;
        display: inline-block;
        background: #fff;
    }

        .login-remember01 ul li input {
            width: 13px;
            height: 13px;
            background: #fff;
            border: solid 1px #ccc;
        }

.find-idpw {
    margin: 40px 0px 20px 0px;
    border-top: dotted 1px #555;
    border-bottom: dotted 1px #555;
    padding: 7px 0px;
    clear: both;
}

    .find-idpw ul:last-child {
        width: 100%;
        border-top: dotted 1px #555;
        padding-top: 5px;
        margin-top: 5px;
    }

    .find-idpw ul li {
        width: 52%;
        text-align: left;
        padding-top: 10px;
        display: inline-block;
        padding-bottom: 10px;
    }

        .find-idpw ul li:last-child {
            width: 46%;
            text-align: right;
            color: #000;
        }

            .find-idpw ul li:last-child a {
                font-weight: bold;
                color: #000;
                text-decoration: none;
            }

@media (max-width: 450px) {
    .find-idpw ul li {
        width: 100%;
    }

        .find-idpw ul li:last-child {
            width: 100%;
            text-align: left;
            padding-top: 0px;
        }
}

.signup-title {
    font-weight: bold;
    font-size: 36px;
    color: #a3a3a3;
}

.signup-text ul li {
    width: 59%;
    line-height: 38px;
    display: inline-block;
    text-align: left;
}

    .signup-text ul li:last-child {
        width: 40%;
        border-radius: 50px;
        border: solid 1px #ccc;
        font-size: 18px;
        text-align: center;
        cursor: pointer;
    }

@media (max-width: 450px) {
    .signup-text ul li {
        width: 100%;
    }

        .signup-text ul li:last-child {
            width: 100%;
        }
}

/* Guide Popup */
.modal {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    top: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.3s, opacity 0.3s 0s, transform 0.3s;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.3s 0s, transform 0.3s;
}

.model-content {
    position: absolute;
    top: 50%;
    height: 600px;
    margin-top: -320px;
    width: 100%;
}

.guidepop-cont {
    width: 460px;
    margin: 0 auto;
    border-radius: 8px 8px;
    background: #fff;
    border: solid 2px #fff;
}

.guidepop-title {
    background: #40c6a7;
    padding: 25px 30px 15px 30px;
    border-radius: 8px 8px 0px 0px;
}

    .guidepop-title ul li {
        font-family: 'Comfortaa', cursive;
        font-size: 24px;
        color: #fff;
        padding-bottom: 8px;
        font-weight: 700;
    }

        .guidepop-title ul li:last-child {
            font-family: 'Noto Sans KR', sans-serif;
            font-weight: 300;
            font-size: 15px;
        }

.guidepop-text {
    padding: 20px;
}

    .guidepop-text ul {
        padding-top: 10px;
    }

        .guidepop-text ul li {
            color: #000;
            line-height: 22px;
        }

            .guidepop-text ul li:last-child {
                font-family: 'Noto Sans KR', sans-serif;
                font-weight: 300;
                color: #555;
            }

.guidepop-close {
    margin: 0 20px 20px 30px;
    padding: 20px 0 10px 0;
    border-top: 1px dotted #ccc;
    text-align: right;
}

    .guidepop-close span {
        cursor: pointer;
    }

@media (max-width: 620px) {
    .model-content {
        top: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 450px) {
    .guidepop-cont {
        width: 90%;
    }
}
