.login-wrap {
    width: 500px;
    height: 540px;
    background-color: #fff;
    border-radius: 5px;
    padding: 69px 30px 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.login-wrap .logo > img {
    width: 224px;
    height: 58px;
    margin-bottom: 54px;
}
.login-wrap .login-form.on {
    display: block;
}
.login-wrap .login-form {
    width: 100%;
    display: none;
}
.login-wrap .login-form .span {
    position: relative;
    display: flex;
}
.login-wrap .input01.id,
.login-wrap .input01.pw {
    width: 100%;
    height: 44px;
    border: 1px solid #cdcdcd;
    padding: 16px 0 16px 50px;
    background: transparent;
    font-size: 14px;
    border-radius: 5px;
    margin: 5px 0;
}
.login-wrap .reset-button {
    background: url("/static/img/viewer/icon16/cancel_gray.png") no-repeat center/cover;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    position: absolute;
    display: none;
}
.login-wrap .span.s-id::before {
    content: "";
    display: block;
    background: url("/static/img/viewer/icon24/default/user.png") no-repeat center/cover;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    position: absolute;
}
.login-wrap .span.s-pw::before {
    content: "";
    display: block;
    background: url("/static/img/viewer/icon24/default/password.png") no-repeat center/cover;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    position: absolute;
}
.login-wrap input {
    font-size: 13px;
    color: #111;
}
.login-wrap input::-moz-placeholder {
    color: #9a9a9a;
}
.login-wrap input::placeholder {
    color: #9a9a9a;
}
.login-wrap input.input01.pw.on,
.login-wrap input.input01.id.on {
    border: 1px solid #0aa66e;
}
.login-wrap .reset-button.on {
    display: block;
}
.login-wrap input.input01.pw.error, .login-wrap input.input01.id.error {
    border: 1px solid #ff3124;
}
.login-wrap .login-button, .auth-button, .change-button {
    width: 100%;
    height: 55px;
    border-radius: 10px;
    background: #9a9a9a;
    font-size: 16px;
    color: #cfcfcf;
    margin: 30px 0 18px;
}
.login-wrap .auth-button.check {
    display: none;
}
.login-wrap .login-button.active, .auth-button.active, .change-button.active {
    background-color: #0697ff;
    color: #fff;
}
.login-wrap .login-button.active {
    background-color: #0697ff;
    color: #fff;
}
.login-wrap .auth-button.check.active {
    background-color: #0697ff;
    color: #fff;
    display: block;
}
.login-wrap .error-text {
    color: #ff3124;
    font-size: 14px;
    text-align: center;
    visibility: hidden;
    display: block;
    margin-top: 10px;
}
.login-wrap .error-text.pass {
    color: #555;
}
.login-wrap .error-text.on {
    visibility: visible;
}
.login-wrap .login-bottom {
    text-align: center;
    color: #555;
    font-size: 13px;
}
.login-wrap .login-bottom {
    font-size: 14px;
}
.login-wrap .login-bottom .find-pw-button {
    margin: 6px auto;
    display: block;
    color: #0697ff;
    font-size: 14px;
    cursor: pointer;
}
.login-form.find-pw form .span.s-pw {
    visibility: hidden;
}
.login-form.find-pw form .span.s-pw.on {
    visibility: visible;
}
.login-form.find-pw form .span.s-id.disabled #findUsrId{
    border-radius: 5px;
    border: 1px solid #555;
    background: #CFCFCF;
}
.login-form.find-pw form .span.s-id.disabled .reset-button {
    display: none;
}
.login-form.find-pw form .error-text.alert-id {
    visibility: visible;
}

.password.popup.on {
    display: block;
}

.password.popup {
    display: none;
    width: 510px;
    height: 583px;
    border-radius: 10px;
    border: 2px solid #1b48ba;
    background: #0f0e43;
    overflow: hidden;
    z-index: 4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.password.popup.posct {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.password.popup .header {
    padding-left: 20px;
    height: 48px;
    background: #1b48ba;
}
.password.popup .header .tit {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}
.password.popup .styclose {
    position: absolute;
    top: 11px;
    right: 20px;
    width: 24px;
    height: 24px;
    background: url("/static/img/viewer/icon24/default/close.png") center no-repeat;
    background-size: 24px;
}
.password.popup .header {
    text-align: center;
    line-height: 48px;
}
.password.popup .body {
    padding: 54px 20px 46px;
}
.password.popup .body .pw-notice {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 10px;
    white-space: nowrap;
}
.password.popup .body .pw-notice > span {
    color: #ff3124;
}
.password.popup .body .pw-subnotice {
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
}
.password.popup .body .pw-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.password.popup .body .pw-wrap .now-pwbox {
    margin: 40px 0 17px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
}
.password.popup .body .pw-wrap .span.s-pw::before {
    content: "";
    display: block;
    background: url("/static/img/viewer/icon24/default/password.png") no-repeat center/cover;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    position: absolute;
}
.password.popup .body .pw-wrap .span.s-pw {
    width: 100%;
    position: relative;
    margin-bottom: 16px;
}
.password.popup .body .pw-wrap .span.s-pw .input01.pw {
    width: 100%;
    height: 44px;
    border: 1px solid #cdcdcd;
    background: #fff;
    padding: 16px 0 16px 50px;
    font-size: 14px;
    border-radius: 5px;
}
.password.popup .body .pw-wrap .span.s-pw .reset-button {
    background: url("/static/img/viewer/icon16/cancel_gray.png") no-repeat center/cover;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    position: absolute;
    display: none;
}
.password.popup .body .pw-wrap .span.s-pw input {
    font-size: 13px;
    color: #111;
}
.password.popup .body .pw-wrap .span.s-pw input::-moz-placeholder {
    color: #9a9a9a;
}
.password.popup .body .pw-wrap .span.s-pw input::placeholder {
    color: #9a9a9a;
}
.password.popup .body .pw-wrap .span.s-pw input.input01.pw.on,
.password.popup .body .pw-wrap .span.s-pw input.input01.id.on {
    border: 1px solid #0aa66e;
}
.password.popup .body .pw-wrap .span.s-pw .reset-button.on {
    display: block;
}
.password.popup .body .pw-wrap .span.s-pw input.input01.pw.error {
    border: 1px solid #ff3124;
}
.password.popup .body .pw-wrap .span.s-pw .login-button {
    width: 100%;
    height: 55px;
    border-radius: 10px;
    background: #9a9a9a;
    font-size: 16px;
    color: #cfcfcf;
    margin: 30px 0 18px;
}
.password.popup .body .pw-wrap .span.s-pw .login-button.active {
    background-color: #0697ff;
    color: #fff;
    width: 100%;
    height: 55px;
    border-radius: 10px;
    font-size: 16px;
    margin: 30px 0 18px;
}
.password.popup .body .pw-wrap .span.s-pw .error-text {
    color: #ff3124;
    font-size: 14px;
    text-align: center;
    display: block;
    margin-top: 10px;
}
.password.popup .pw-vaild-text {
    font-size: 13px;
    color: #c9c9c9;
    margin-bottom: 30px;
}
.password.popup .button-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
.password.popup .button-box button {
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    height: 60px;
}
.password.popup .button-box .btn-cancel {
    background-color: #101a71;
}
.password.popup .button-box .btn-change {
    background-color: #0697ff;
}
div.login-wrap .home-bottom {
    text-align: center;
    color: #555;
    font-size: 13px;
}
div.login-wrap .home-bottom {
    font-size: 14px;
}
div.login-wrap .home-bottom .home-button {
    margin: 6px auto;
    display: block;
    color: #0697ff;
    font-size: 14px;
    cursor: pointer;
}