/* ── 아이디/비밀번호 찾기 모달 ───────────────────────── */
.login-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.login-modal-overlay.active {
    display: flex;
}

.login-modal {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.login-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.login-modal__close:hover {
    color: var(--primary);
}

.login-modal__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(232, 69, 25, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-modal__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.login-modal__title {
    color: var(--aticle-title);
    margin: 0;
}

.login-modal__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.login-modal__info-box {
    padding: 20px 0;
}

.login-modal__divider {
    width: 100%;
    height: 1px;
    background: #eee;
}

.login-modal__contact {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    text-decoration: none;
}

.login-modal__contact:hover {
    text-decoration: underline;
}

.login-modal__btn {
    width: 100%;
    padding: 14px 0;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.login-modal__btn:hover {
    opacity: 0.85;
}

.mb-10px { margin-bottom: 10px; }
.l-h-24p { line-height: 24px; }
