
html { color:#232323; }

/* 공통 */
#wrapper {
    width:100%;height:100%;
}

.background {
    width:100%;height:100%;
    position:fixed;
    top:0;
    left:0;
    background-size: cover;
    background-image: url('/res/lms/img/login/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    position:relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 0 50px;
}
.container > div{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 0 50px;
    width: 100%;
}

.left-section {
    flex: 1;
    padding-right: 20px;
    text-align: center;
}

.left-section h1 {
    font-family: notokr-regular;
    font-size: 38px;
    color: #12309b;
    margin:0 0 8px 0;
}

.left-section p {
    font-family: notokr-bold;
    font-size: 20px;
    color: #12309b;
    line-height: 45px;
}

.left-section .sub-title {
    margin-bottom: 50px;
}

.left-section .description {
    padding-left: 40px;
    text-align: left;
}

.info-box {
    float:right;
    width:600px;
    margin-right:120px;
}

.logo {
    position: absolute;
    top: 46px;
    left: 89px;
}

.logo img {
    width:360px;
}

.medium_logo{
    width: 180px;
    margin-bottom: 32px;
}

.right-section {
    flex: 1;
}

.login-box {

    float:left;
    margin-left:120px;

    box-sizing: border-box;
    width: 450px;
    height: 550px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 80px;
    border-radius: 10px;
    text-align: center;
}

.hello {
    margin-top:40px;
    color: #12309b;
    margin-bottom: 30px;
    font-family: notokr-regular;
    font-size:25px;
}

input::placeholder {color: #c5c5c5;}
input::-webkit-input-placeholder {color: #c5c5c5}
input::-moz-placeholder {color: #c5c5c5}
input:-ms-input-placeholder {color: #c5c5c5}
input::-ms-input-placeholder {color: #c5c5c5}
input { padding-left:20px;padding-right:20px;
    border: 1px solid #c5c5c5; width:100%; box-sizing:border-box;
    height:45px;font-family: notokr-regular;outline: none; }

#username { border-top-left-radius:8px;border-top-right-radius:8px; }
#password { border-bottom-left-radius:8px;border-bottom-right-radius:8px;border-top:0; }

.check-box-section {
    cursor:pointer;
    color: #000000;
    font-family: notokr-regular;
    height:30px;line-height:30px;margin-top:5px;margin-bottom:10px;
    font-size:14px;
    text-align: left;
}
.check-box-section img { vertical-align: middle;margin-right:5px; }

.login-button {
    display: block;
    width: 100%;
    height:50px;
    background-color: #2353e3;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: notokr-bold;
    cursor: pointer;
}

.login-button:hover {
    background-color: #163b8b;
}

.domain-info {
    margin-top: 80px;
    font-size: 16px;
    color: #000000;
    font-family: notokr-medium;
    text-align: center;
}

.user-service{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 17px;
    margin-top: 12px;
}
.user-service p{
    font-family: notokr-medium;
    position: relative;
    color: #9a9a9a;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

.user-service p::after{
    content: "";
    background-color: #d9d9d9;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -9px;
    height: 12px;
    width: 1px;
}
.user-service p:last-child::after{
    content: none;
}

@media (max-width: 1600px) {

    .info-box {
        float:none;
        margin:0 auto;
    }


    .login-box {
        float:none;
        margin:0 auto;
    }


}


@media (max-width: 1200px) {

    .container {
        display:block;
        padding-top:50px;
        padding-bottom:50px;
        padding-left:20px;
        padding-right:20px;
    }

    .container > div{
        position: relative;
        display: block;
        height: 100vh;
        padding: 0;
        width: 100%;
    }

    .left-section {
        flex:none;
        float:none;
    }

    .right-section {
        flex:none;
        float:none;
        margin:0 auto;
    }

    .logo {
        margin-bottom: 50px;
    }

    .left-section h1 {
        font-size: 32px;
    }

    .left-section p {
        font-size: 16px;
    }

    .left-section .sub-title {
        margin-bottom: 30px;
    }

    .left-section .description {
        display:none;
    }

    .info-box {
        box-sizing: border-box;
        width:95%;
    }


    .login-box {
        box-sizing: border-box;
        width:95%;
        padding-left:40px;
        padding-right:40px;
        height:auto;
    }

    .hello {
        margin-top:0px;
    }

    .logo {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 360px;
        margin-bottom: 30px;
    }

    .logo img {
        width:360px;
    }

    .medium_logo{
        display: none;
    }
}



@media screen and (min-width:1201px) {

    .pc_hide {
        display: none !important;
    }
}