﻿/* 변수 */
:root {
    --secondColor: #0692e7;
    --fontColor: #666;
}

body {
    margin: 0;
    min-height: 820px;
    height: 100%;
    /*background-color: #000000cc;*/
    color: #666666;
    font-family: 'Pretendard';
    overflow: hidden;
}

a {
    text-decoration: none;
    font-size: 14px;
    color: var(--fontColor);
    /*font-weight: bold;*/
}

    a:hover {
        text-decoration: underline;
    }

div,
input {
    box-sizing: border-box;
}

html {
    height: 100%;
}

.container {
    width: 100%;
    height: 100%;
    padding: 0 40px;
    display: table;
    table-layout: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    width: 85px;
}

input[type="text"] {
    width: 100%;
    height: 45px;
    padding: 0 0 0 10px;
    /*background: rgba(102,102,102,0.3);*/
    color: #252525;
    /* border-radius: 5px; */
    border: 1px solid #D9D9D9;
    -webkit-border-radius: 0px;
    border-radius:0px;
    /*border-bottom: none;*/
    display: block;
    font-size: 16px;
    outline: none;
}

input[type="password"] {
    width: 100%;
    height: 45px;
    padding: 0 0 0 10px;
    margin-top: 4px;
    /*background: rgba(102,102,102,0.3);*/
    color: #252525;
    /* border-radius: 5px; */
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 1px solid #D9D9D9;
    display: block;
    font-size: 16px;
    outline: none;
}

    input[type="text"]:focus,
    input[type="password"]:focus {
        border: 1px solid var(--secondColor);
    }

.password {
    position: relative;
}

    .password .eyes {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto 15px;
        width: 18px;
        height: 18px;
        font-size: 22px;
        cursor: pointer;
    }

        .password .eyes img {
            width: 100%;
        }

input[type="checkbox"] {
    width: 15px;
    height: 15px;
    vertical-align: middle;
    border-radius: 5px;
    color: #ddd;
    display: inline-block;
    accent-color: var(--secondColor);
}

label {
    /*color: rgba(255, 255, 255, 0.6);*/
    vertical-align: middle;
    font-size: 14px;
    /*font-weight: bold;*/
    margin-left: 4px;
    display: inline-block;
}

input:-webkit-autofill {
    /*-webkit-box-shadow: 0 0 0 30px #6f7d8b inset;
  box-shadow: 0 0 0 30px #6f7d8b inset;*/
    -webkit-text-fill-color: #252525;
}

    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        -webkit-box-shadow: 0 0 0px 1000px #fff inset;
        box-shadow: 0 0 0px 1000px #fff inset;
        transition: background-color 5000s ease-in-out 0s;
    }

input::-webkit-input-placeholder {
    color: var(--fontColor);
    z-index: 99999;
    font-family: 'Pretendard';
}

input:-moz-placeholder {
    color: #aaa;
    z-index: 999999;
}

.wrap {
    margin: 0 auto;
    width: 310px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

    .wrap img {
        width: 310px;
        /*opacity: 0.7;*/
    }

    .wrap .logotxt {
        margin: 20px 0 60px 0;
    }

    .wrap .login {
        width: 100%;
        padding: 15px 0;
        margin: 20px 0;
        /* border-radius: 5px; */
        display: block;
        color: #fff;
        background: #4a4a4a;
        font-size: 16px;
        border: none;
    }

        .wrap .login:hover {
            opacity: 0.8;
            text-decoration: none;
        }

        .wrap .login:active {
            opacity: 0.5;
        }

    .wrap .line {
        position: relative;
        width: 100%;
        height: 1px;
        margin: 13px 0;
        background: linear-gradient( to right, rgba(204, 204, 204, 0), rgba(204, 204, 204, 0.5), rgba(204, 204, 204, 0) );
    }

    .wrap .bottom {
        height: 0;
    }

    .wrap .bottom100 {
        height: 100px;
    }

    .wrap .height50 {
        height: 50px;
    }

    .wrap .text_bigger {
        font-size: 14px;
        display: inline-block;
    }

        .wrap .text_bigger:hover {
            text-decoration: underline;
        }

    .wrap .bold {
        font-weight: bold;
    }

    .wrap .text_small {
        font-size: 12px;
    }

.id_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

    .id_wrap a {
        color: var(--fontColor);
    }
/* absolute */
.footer_tl {
    position: fixed;
    left: 10px;
    top: 10px;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 2px;
}

.footer_tr {
    position: fixed;
    right: 15px;
    top: 10px;
    font-size: 16px;
    opacity: 0.5;
}

    .footer_tr:hover {
        opacity: 1;
    }

    .footer_tr a {
        font-size: 16px;
        font-weight: normal;
        vertical-align: middle;
    }

    .footer_tr img {
        width: 18px;
        vertical-align: middle;
        margin-bottom: 3px;
    }

.footer {
    position: fixed;
    right: 15px;
    bottom: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer_l {
    position: fixed;
    left: 15px;
    bottom: 10px;
    opacity: 0.8;
}

    .footer_l:hover {
        opacity: 1;
    }

/**/
@media (max-width: 1000px) {
    /**/
    .footer_tl {
        display: none;
    }

    .footer_tr {
        display: none;
    }

    .footer_l {
        display: none;
    }

    .footer {
        display: none;
    }

    .wrap {
        width: 100%;
    }
        .wrap > img:first-of-type {
            width: 250px;
        }

    .container {
        height: inherit;
    }

    body {
        min-height: inherit;
        height: inherit;
    }
    .wrap img {
        width: 110px;
    }
    input[type="text"],
    input[type="password"] {
        width: 250px;
    }
}
.autoLoginBox {
    padding: 15px 0 0 0px;
    display:flex;
    align-items: center;
}
