.body-filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1002;
    display: none;    
}

.login-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem;
    border-bottom: 1px solid var(--color-lightgray);
    z-index: 99;  
}

.login-top .top-sub {
    display: flex;
    align-items: center;
    gap: 15px;
}
.login-top .top-sub a {
    text-decoration: none;
    color: var(--color-gray3);
}
.login-top .splite-line {
    width: 2px;
    height: 15px;
    background: var(--color-lightgray);
}

.login-wrap {
    position: relative;
    max-width: 492px;
    min-width: 360px;
    min-height: 100vh;
    margin: 0 auto;
    padding-top: 130px;
    padding-left: 1rem;
    padding-right: 1rem;
}

#logo_link {
    padding: 1rem 0;
    text-align: center;
}

#logo_link a {
    display: block;
}

.input-block {
    width: 100%;
    height: 56px;
}

.input-block input {
    width: 100%;
    height: 100%;
    padding-left: 1rem;
    padding-right: 3rem;
    font-size: 16px;
}

.input-block {
    margin-bottom: 1rem;
}

.input-block input {
    border: 1px solid #E5E8EB;    
    outline: 2px solid transparent;
    transition: outline-color 0.2s ease;
}

.input-block input:focus {
    outline-color: var(--color-blue);
}

#pw_input {
    position: relative;
    display: flex;
    align-items: center;
}

#pw_input input {
    width: 100%;
    height: 100%;
    padding-left: 1rem;
    padding-right: 45px !important;
    font-size: 16px;
}

.openpw {
    position: absolute;
    top: 0;           /* 부모 높이 전체를 활용 */
    right: 0;         /* 우측 끝으로 배치 */
    width: 45px;      /* 최소 터치 영역 44~48px 확보 */
    height: 100%;     /* 부모 높이와 동일하게 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;      /* input보다 위에 오도록 설정 */
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent; /* 터치 시 파란 박스 제거 */
}

/* 아이콘 색상 및 크기 고정 */
.openpw svg {
    width: 20px;
    height: 20px;
    fill: #BDBDBD;
    pointer-events: none; /* 클릭 이벤트가 SVG가 아닌 부모(.openpw)에 전달되도록 함 */
}

#check_wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2rem;
}

#save_id {
    width: 20px;
    height: 20px;
    border: 1px solid #E5E8EB;
}

#save_id_label {
    font-size: 13px;
    color: #737881;
}

#btn_wrap {
    width: 100%;
    height: 60px;
}

#login_btn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: transparent;
    background: var(--color-blue);
    color: var(--color-white);    
}

#login_sub {
    padding: 1rem 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;    
}

#login_sub li {
    position: relative;
    padding: 0 1rem;
}

#login_sub li a {
    font-size: 14px;
    color: #737881;
    text-decoration: none;
}

#login_sub li:not(:last-child)::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background: #737881;
}

#login_easyauth {
    margin-top: 2rem;
    width: 100%;
    list-style: none;
}

#login_easyauth li {    
    height: 45px;    
    border: 1px solid #E5E8EB;
}

#login_easyauth li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;    
    text-decoration: none;    
}

#easyauth_naver a {
    color: #03C75A;
}

#login_footer {
    margin-top: 100px;
    padding-bottom: 2rem;
    font-size: 12px;
    text-align: center;
    color: #9FA1A7;
}