﻿@charset "utf-8";

/* Login */
.login-wrapper {
    display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: url("../../images/mng/symbol-kccf.png") repeat center fixed;
    background-color: #384253;
    background-size: 56px;
}

.login-wrapper > .inner {
    width: 960px;
    background-color: #fff;
}

.login-wrapper > .inner > .left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 480px;
    background: #5789bd;
    background: -webkit-linear-gradient(to top, #215e9e, #5789bd);
    background: linear-gradient(to top, #215e9e, #5789bd);
}

.login-wrapper > .inner > .left.logo img {
    display: block;
    width: 224px;
}

.login-wrapper > .inner > .right {
    display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 480px;
}

.login-wrapper > .inner > .right > .header {
    font-size: 0.875rem;
    text-align: center;
    padding: 0px 40px;
    margin-bottom: 24px;
}

.login-wrapper > .inner > .right > .header p:first-child {
    font-size: 1.188rem;
    font-weight: 500;
}

.login-wrapper > .inner > .right > .header p:first-child span {
    color: #2971bd;
}

.login-wrapper > .inner > .right > .content {
    width: 264px;
}

.login-wrapper > .inner > .right input {
    width: inherit;
    height: 44px;
    padding: 4px 12px;
    margin-bottom: 4px;
}

.login-wrapper > .inner > .right ::-webkit-input-placeholder {color: #707070 !important;}
.login-wrapper > .inner > .right :-ms-input-placeholder {color: #707070 !important;}
.login-wrapper > .inner > .right input::placeholder {color: #707070 !important;}

.login-wrapper > .inner > .right .btn-login {
    width: inherit;
    height: 44px;
    line-height: 44px;
}

.login-wrapper > .inner > .right .id-pw {
    width: 100%;
    font-weight: 300;
    margin: 10px 0px;
}

.login-wrapper > .inner > .right .id-pw ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper > .inner > .right .id-pw li {
    font-size: 0.938rem;
    padding-right: 16px;
}

.login-wrapper > .inner > .right .id-pw li:first-child:after{
    display: inline-block;
    height: 12px;
    content: '';
    border-right: 1px solid #dadfe7;
    padding-left: 12px;
}

.login-wrapper > .inner > .right .id-pw li:last-child {
    padding-right: 0;
}

.login-wrapper > .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.813rem;
    margin-top: 24px;
}