﻿@charset "utf-8";
/* CSS Document */
body * {
    box-sizing: border-box;
    font-family: 'Malgun Gothic',Apple SD Gothic Neo, roboto;
}


html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    letter-spacing: 0px;
}


a {
    text-decoration: none;
    padding: 0;
    margin: 0;
    color: #000;
    cursor: pointer;
}

input, textarea, select {
    color: #464646;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    font-size: 13px;
}

    input[type="text"], input[type="password"], select, textarea {
        outline-style: none;
    }

    /* 크롬에서만 password 타입 흰색으로 보이는 현상 : 나눔스퀘어 폰트 때문에 이부분만 변경 */
    input[type="password"] {
        font-family: 'Malgun Gothic';
    }

    input[type="checkbox"] {
        vertical-align: middle;
    }

    input[type="radio"] {
        vertical-align: middle;
    }

select, p, h1, h2, h3 {
    padding: 0px;
    margin: 0;
}

ul, ol, dl, li, dt, dd {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    border: 0px;
    margin: 0;
}

/*Control공통*/
input {
    margin: 5px 0;
    padding: 0px 6px;
    height: 30px;
    font-size: 16px;
    color: #333;
    border: 1px solid #ccc;
}
input:focus {
    border: 2px solid #93d50a;
}

select::selection {
    border: 2px solid #93d50a;
    background-color: #93d50a;
}

input:disabled, select:disabled {
    color: #888;
    background-color: #eee;
    opacity:.8;
}
input:disabled {
    padding: 0 4px 1px !important;
}


/*공통 다이얼로그*/
.dlg {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
}

    .dlg > .dlgBox {
        width: 540px;
        height: 400px;
        padding: 30px;
        border: 1px solid #999;
        background-color: #fff;
    }

        .dlg > .dlgBox > .titleArea {
            position: relative;
            height: 50px;
        }

            .dlg > .dlgBox > .titleArea > .txtTitle {
                font-size: 21px;
                letter-spacing: -.1em;
            }

            .dlg > .dlgBox > .titleArea > .txtDescription {
                font-size: 13px;
            }

        .dlg > .dlgBox .btnArea {
            justify-content: center;
            border: 0px;
        }

/*버튼 공통*/
.btnArea > .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 200px;
    height: 50px;
    border: 0px;
    border-radius: 25px;
    background-color: #000;
    color: #7CD800;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: -.06em;
}

    .btnArea > .btn:hover {
        cursor: pointer;
        background-color: #7CD800;
        color: #fff;
    }

    .btnArea > .btn + .btn {
        margin-left: 10px;
    }

    .btnArea > .btn.gray {
        cursor: pointer;
        background-color: #e7e7e7;
        color: #424558;
    }

/* Change the color to your own background color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 9999s ease-out;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/*로그인,회원가입,ID&PW찾기*/
.membersArea {
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100%;
}

.maxWidth1000 {
    max-width: 1000px;
}