

/* 관리자 로그인 */
.login_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/images/backoffice/bg_login.jpg") no-repeat 50% 50% / cover;
}
.login_wrap .login_inbox {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 540px;
    max-width: calc(100% - 40px);
    background: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 2px 10px;
    padding: 60px 70px;
    transform: translate(-50%, -50%);
}
.login_wrap .title {
    font-size: 40px;
    color: #2668b4;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    margin-bottom: 30px;
}
.login_wrap .title .kor {
    font-size: 20px;
    color: #a5c1e0;
    line-height: 20px;
    margin-top: 16px;
}
.login_wrap .inputs {
}
.login_wrap .text {
    display: block;
    font-size: 12px;
    color: #333;
    width: 100%;
    height: 40px;
    border: #ddd 1px solid;
    border-radius: 4px;
    padding: 0 15px;
    margin-top: 20px;
}
.login_wrap .text::placeholder {
    color: #999;
}
.login_wrap .text:first-child {
    margin-top: 0;
}
.login_wrap .btn {
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: 900;
    line-height: 50px;
    height: 50px;
    width: 100%;
    border: 0;
    background: #2668b4;
    border-radius: 4px;
    text-align: center;
    margin-top: 30px;
}
.login_wrap .btn:before {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 50px;
    background: url("/images/backoffice/icon_login.svg") no-repeat 50% 50% /
    contain;
    margin-right: 5px;
}
.login_wrap .btm_txt {
    margin-top: 40px;
    border-top: #ddd 1px solid;
    padding-top: 25px;
    font-size: 12px;
    color: #999;
    line-height: 20px;
}