@charset "utf-8";
@import url(/assets/css/reset.css);
@import url(/assets/css/style.css);

:root {
    accent-color: #004190;
    /* color */
    --color-accent: #004190;
    --color-black: #0F0F0F;
    --color-white: #fff;
    --color-red: #513a3a;
    --color-gray: #ddd;
    --color-lgray: #f4f4f4;
    --color-dgray: #454649;
    --color-red: #F03E3E;
    /* background color */
    --color-bg-accent: #004190;
    --color-bg-white: #fff;
    --color-bg-lgray: #f1f3f5;
    --color-bg-dgray: #454649;
    --color-bg-red: #F03E3E;
}

* {
    font-family: 'Noto Sans KR', sans-serif;
    box-sizing: border-box;
}

.container {
    width: 100vw;
    min-width: 1440px;
    height: 100vh;
    /* min-height: 900px; */
    overflow: hidden;
    position: relative;
}


/* common style layout */
.top-logo {
    width: 150px;
    overflow: hidden;
    position: absolute;
    top: 2.5rem;
    left: 3rem;
    z-index: 10;
}

.top-logo img {
    width: 100%;
    object-fit: contain;
}


/* aside */
aside {
    width: 640px;
    min-width: 640px;
    padding: 3rem;
    z-index: 3;
    overflow: hidden;
}


/* footer */
footer {
    width: 100%;
    position: absolute;
    right: 3rem;
    bottom: 2.5rem;
    text-align: right;
}

footer .company {
    display: flex;
    justify-content: right;
    margin-bottom: 10px;
}

footer .company>li {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-accent);
}

footer .company>li:first-child::after {
    content: '\2022';
    margin: 0 4px;
}

footer .address>p {
    font-size: 0.94rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-dgary);
    text-align: right;
}

footer .address>p>strong {
    font-weight: 700;
}

footer .copyright {
    font-size: 0.75rem;
    font-weight: 400;
    color: #777;
    margin-top: 20px;
}


/* Message */
.error-msg {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-red);
    margin-top: 0.6rem;
    display: block;
}
.error-msg::before {
    content: '*';
    font-size: 1rem;
    margin-right: 2px;
}
.error {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-red);
    margin-top: 0.6rem;
}
.error::before {
    content: '*';
    font-size: 1rem;
    margin-right: 2px;
}

.info-msg {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-dgary);
    margin-top: 0.6rem;
}
.info-msg::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(/assets/img/common/info_icon.png) 50% no-repeat;
    background-size: contain;
    vertical-align: top;
    background-size: contain;
}


/* ETC. style css */
/* Sizing */
.w-full {width: 100%;}
.w-48 {width: 48%;}

/* Spacing */
.mx-0 {margin-left: 0; margin-right: 0;}
.my-0 {margin-top: 0; margin-bottom: 0;}
.mt-0 {margin-top: 0;}
.mb-0 {margin-bottom: 0;}
.mb-10 {margin-bottom: 10px;}
.ml-0 {margin-left: 0;}
.mr-0 {margin-right: 0;}


/* button style */
button {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    display: block;
    background-color: transparent;
}


/* input style */
input {
    width: 100%;
    height: 46px;
    border: none;
    border-bottom: 1px solid var(--color-accent);
}
input:disabled {
    background: transparent;
    color: #777 !important;
    cursor: no-drop;
}
input[type="text"]:focus {
    outline: none;
}
input[type="text"]::placeholder {
    color: #999;
}


/* checkbox style */

input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    vertical-align: middle;
}


/* 모바일에 사용될 스트일 시트 */
@media screen and (max-width: 768px) {
    .container {
        width: 100%;
        min-width: unset;
        height: unset;
        min-height: unset;
        overflow: unset;
        position: unset;
    }

    /* common style layout */
    .top-logo {
        width: 100px;
        overflow: hidden;
        position: absolute;
        top: 1.25rem;
        left: 1.25rem;
        z-index: 10;
    }

    /* aside */
    aside {
        display: none;
    }

    /* footer */
    footer {
        width: 100%;
        padding: 2rem 1.25rem;
        position: unset;
        text-align: center;
        background-color: var(--color-bg-white);
    }
    footer .company {
        display: unset;
    }
    footer .company>li {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    footer .company>li:first-child::after {
        display: none;
    }

    footer .address {
        margin-top: 10px;
    }
    
    footer .address > p {
        font-size: 0.7rem;
        line-height: 1.5;
        text-align: center;
    }
    
    footer .address > p > strong {
        font-weight: 700;
    }
    
    footer .copyright {
        font-size: 0.6rem;
        margin-top: 20px;
    }


    /* Message */
    .error-msg {
        font-size: 0.7rem;
    }
    .error {
        font-size: 0.7rem;
    }
    .info-msg {
        font-size: 0.7rem;
        line-height: 1.5;
    }
    .info-msg::before {
        width: 13px;
        height: 13px;
        vertical-align: middle;
    }
}